Here's what I'm trying to do: I have a button on the settings page in my app - I want this to direct users to the review/rate page on the app store.

I know this is possible using [[UIApplication sharedApplication] openURL: .... ]; but my app is unreleased as of yet, so I don't have a URL to use.

Is it possible to implement this functionality for an unreleased app, or would I have to wait and include it as an update?

Thanks :)

link|improve this question

feedback

3 Answers

up vote 7 down vote accepted

The URL below is what you're looking for. Just replace the 353432042 in id=353432042& with your app's application ID from iTunes Connect. This will take you right to the review page and won't have all the redirects like a normal link. You can also use this URL before your first version because it's using the Application ID which will not between now and launch.

http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=353432042&pageNumber=0&sortOrdering=1&type=Purple+Software&mt=8
link|improve this answer
That sounds good, but didn't work for me when I pasted my own IDs in - I just get a message saying 'that app is not currently available on the app store'. The app is, of course, available. Your link above shows the same issue. Has the format changed? – Ben Clayton Mar 24 '11 at 15:22
I just tested it in safari and on my iPhone. It worked both times. This will not run in the simulator, it needs a device to work, either an iOS device or a computer with iTunes installed. Also, if your app isn't on the store, and you call this with your device ID, it won't work. – W Dyson Mar 24 '11 at 20:47
feedback

This is newest format for creating review form links on iOS (only works for iOS devices) [tested on 4.2]

itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=412843648

Replace the final string of 9 numbers with your app's application ID from iTunes connect or your iTunes url. This link when launched from an iOS device takes you directly to the reviews

link|improve this answer
That one works on 4.3 too. Thanks 'zzzzzz'. It's a bit worrying that apple can change this link at any time though. – Ben Clayton Mar 24 '11 at 15:24
feedback

Yes you can add a link.

What I did for one of my apps that wasnt released yet was point to a certain URL, like: http://www.wrightscs.com/ios/myapp/review.html which just contained an http redirect.

Once my app was released and I had the iTunes Store link, I just updated the review.html page with my apps URL.

So now my app opens the review.html link, but in return gets redirected to my app in the app store.

link|improve this answer
2  
A redirect will open safari first instead of automatically detecting an app store link. Best way to do this would be to add the application to iTunes Connect (well before uploading the binary), the resulting id can then be used to link to your app, released or not. – Farid Jan 28 '11 at 4:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.