Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

API to monitor iphone app store reviews [closed]

Tags:

iphone

People also ask

Does Apple have an API?

The Sign in with Apple REST API is a web service that connects you to Apple's authentication servers. Use this service to generate and validate the identity tokens used to verify a user's identity.

How do I see responses to App Store Reviews?

See testing feedbackOpen Play Console and go to the Testing feedback page (Ratings and reviews > Testing feedback). Decide how you want to browse your feedback. Filter: To see beta feedback based on certain criteria like date, language, reply state, app version, device, and more, select from the available filters.

How do I connect to App Store API?

Click OpenAPI specification to download the specification file. Calls to the API require JSON Web Tokens (JWT) for authorization; you obtain keys to create the tokens from your organization's App Store Connect account. See Creating API Keys for App Store Connect API to create your keys and tokens.

Can you see your Reviews on App Store?

App 2The App StoreTap on your profile icon in the top right, select "Personalized Recommendations," and go into "Ratings & Reviews." You can see other interactions you've had with the App Store, such as purchases, subscriptions, and pre-orders.


Unfortunately, none of the answers here did the trick, and I didn't get the feedback I needed.

However, I found an answer.

One can just go to the rss feed from Apple feedback (in the itunes connect site and replace the word xml with json (for those [like me] who prefer to work with json objects). However note, that XML has 2 extra fields, that are missing in JSON : <updated>(very useful) and <content type="html">.

https://itunes.apple.com/HERE-YOU-PUT-THE-CONTRY-CODE/rss/customerreviews/id=PUT-APP-ID-HERE/sortBy=mostRecent/json APP ID - you cant get your app id from itunsconnect in the view details tab. country codes - like il for israel, it for italy and etc.

For example, in my case the link was -

https://itunes.apple.com/il/rss/customerreviews/id=567630281/sortBy=mostRecent/xml

I hope this helps.


I know this question is probably out of date, but I found an EXCELLENT resource http://blog.manbolo.com/2012/09/10/useful-itunes-web-services outlining the various APIs that are available for querying iTunes data, INCLUDING a mechanism for querying app reviews, e.g.
https://itunes.apple.com/rss/customerreviews/id=400274934/xml


We had the same issues, and since we have 7 apps in the App Store, visiting the store pages wasn't really an option. So we built a tool that we recently released that you might find useful: https://launchkit.io/reviews/

It emails you all new reviews and posts them to your teams Slack channel.


This post outlines building such a "scraper" using curl. It also gathers international reviews, which is difficult to do just using iTunes:

http://blogs.oreilly.com/iphone/2008/08/scraping-appstore-reviews.html