Reputation: 702
Folks,
I have google and found many answers which really do not work for me about lookup API of apple.
I am trying to get version details for my app and calling the below API but it returns the following result every time.
http://itunes.apple.com/lookup?bundleId=com.itouchvision.MCSUK
{ "resultCount":0, "results": [] }
Note that: The app is on App Store and I tried with https://, country code, and even with id parameters but nothing returns a result.
Any idea, please let me know. Thank You!
Upvotes: 1
Views: 863
Reputation: 1
Apple has changed their API, and removed the language code from the URL, so you should only the bundleId for the app you are looking for. For example:
http://itunes.apple.com/lookup?bundleId=com.yelp.yelpiphone
In addition, you can add the country parameter to the query, to get results for a specific country App Store.
For example:
http://itunes.apple.com/lookup?bundleId=com.yelp.yelpiphone&country=de
The description, user rating and other fields might change between different App Store countries.
Upvotes: 0