Re https://dev.fitbit.com/guides/communications/file-transfer/, I can send and display images with .jpg extension but not .JPG extension. Not sure if this is to do with the transfer or the display, but I feel that either style should work. If not, doco should mention.
Answered! Go to the Best Answer.
Best AnswerI did some tests, and there is an issue with JPG loading. You can load files with JPG extension in capital cases if it's in lower case in the code. Example:
The file image.JPG in my resources folder will load if my code is
<image href="image.jpg" />
but won't load if the code is
<image href="image.JPG" />
Thanks for reporting this, I'll check with the product team.
I did some tests, and there is an issue with JPG loading. You can load files with JPG extension in capital cases if it's in lower case in the code. Example:
The file image.JPG in my resources folder will load if my code is
<image href="image.jpg" />
but won't load if the code is
<image href="image.JPG" />
Thanks for reporting this, I'll check with the product team.