marcwjj
marcwjj

Reputation: 1745

iTunes review URL not working in iOS9?

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

Answers (1)

emotality
emotality

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

Related Questions