I created a simple Web Tile for Microsoft Band 2 using https://developer.microsoftband.com/WebTile. The tile installed without trouble and initially showed correct values, but it never updated. I added a notification to see if anything was happening, and the notification does get fired when the phone refreshes content, but the data is never updated even though the data changes in the feed.
Slightly sanitized feed:
<rss xmlns:a10="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>Title</title>
<link>http://website.com/band</link>
<description>Band Tile</description>
<language>en-US</language>
<copyright>2015 Company</copyright>
<lastBuildDate>Sun, 01 Nov 2015 19:25:21 Z</lastBuildDate>
<item>
<link>http://company.com/band/635820027213013187</link>
<title>635820027212075628</title>
<description>2</description>
</item>
</channel>
</rss>
The only data I'm trying to update on the Tile is the <description>
value.
The <link>
and <title>
didn't change at first, but I added the datetime (in ticks) in hopes of convincing the app to act on the change, but no luck.
I'm using an Android phone for the Microsoft Health App.