Reputation: 1745
I've been using this URL successfully on iOS 8 to direct users to my app rating URL, but it stops working on iOS 9
"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=984230464&onlyLatestVersion=true&pageNumber=0&sortOrdering=1&type=Black+Mouton"
I'm getting the error message: Your request produced an error. [newNullResponse]
Any solution?
Upvotes: 0
Views: 570
Reputation: 13035
This is working on iOS 9:
NSString *reviewURL = @"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=<#YOUR_APP_ID_HERE#>&onlyLatestVersion=true&pageNumber=0&sortOrdering=1&type=Purple+Software";
Upvotes: 2