11

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.

App Store Screen Shots

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?

Community
  • 1
  • 1
nurider
  • 1,555
  • 1
  • 18
  • 21

2 Answers2

21

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".

computingfreak
  • 4,939
  • 1
  • 34
  • 51
0

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]];
Community
  • 1
  • 1
Daniel Galasko
  • 23,617
  • 8
  • 77
  • 97