Reputation: 1833
Does anyone know how to link directly to the "Write a Review" page in the app store for iOS7 & iOS8?
Specifically, I want to go to the app review page and then automatically bring up the "Write a Review" screen (see below), making it easier for users of our app to write a review.
I've seen this posting and this posting, which provide details on linking to the "review" section.
My question is different – I want to also bring up the "Write a "Review" window as well.
Is this possible? If not, is there an alternative you might recommend?
Upvotes: 11
Views: 4547
Reputation: 5099
This is possible, using the link -> itms-apps://itunes.apple.com/app/id\(appID)&mt=8
with a get a parameter in the end : ?action=write-review
let appReviewURL = "itms-apps://itunes.apple.com/app/id\(appID)?action=write-review&mt=8"
print(appReviewURL)
UIApplication.shared.open(URL(string:appReviewURL)!,options: [:])
This should launch the "Write a Review" page for the specified "appID".
Upvotes: 21
Reputation: 24237
This is not possible as has been seen previously on SO, what you can instead do is link to the AppStore for your App and hope the user writes a review
You can construct the URL like this:
http://itunes.com/apps/<APP_NAME>
And open it like so:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:itunesURLString]];
Upvotes: 0