I'm using iTunes RSS api for fethching reviews for app store to get customer reviews . In my web-app , I want to show links that will directly open the particular review for an app by the user ,in iTunes or on web .
For example , when I make this API call ,
https://itunes.apple.com/rss/customerreviews/id=1040200189/sortBy=mostRecent/json
Response contains:
"author": { "uri": { "label": "https://itunes.apple.com/us/reviews/id21684416" }, "name": { "label": "T2theY" }, "label": "" }, "im:version": { "label": "2.1.1" }, "im:rating": { "label": "5" }, "id": { "label": "1431036926" }, "title": { "label": "Love this app" }, "content": { "label": "I use this app to create color boards and to capture simplified shapes as inspiration for art. The best part is they sync seamlessly with all my Adobe applications and appear in libraries automatically. It's so cool and so easy to use. Adobe is making some of the best apps on the market right now!", "attributes": { "type": "text" } }, "link": { "attributes": { "rel": "related", "href": "https:/ } }, "im:voteSum": { "label": "0" }, "im:contentType": { "attributes": { "term": "Application", "label": "Application" } }, "im:voteCount": { "label": "0" } }
In above , as far as I cab understand uri :
https://itunes.apple.com/us/reviews/id21684416 should take directly to review , however it just opens iTunes's Home and doesn't go any further .
Can someone please help me understand how to get link to a particular review that would open iTunes showing that review directly