Reputation: 1632
We have approximately 75,000 customer reviews in AppStoreConnect across all of our apps. Is there a way to fetch all customer reviews without getting rate limit exception?
using Customer Reviews API to fetch customer reviews and iterating through the next in links object to get paginated data.
"links": {
"self": "https://api.appstoreconnect.apple.com/v1/apps/<id>/customerReviews?include=response&limit=200&sort=-createdDate",
"next": "https://api.appstoreconnect.apple.com/v1/apps/<id>/customerReviews?cursor=<value>&include=response&limit=200&sort=-createdDate"
},
I don't know when the rate limit is getting triggered. So I want to filter the reviews by created date. Is there a way to filter the reviews based on created date?
Upvotes: 4
Views: 387