I've seen posts here on Stackoverflow that describe how to allow users to be directed to apps on the app store.
Is there a way to link directly to the rating and comments form in the App Store?
|
I've seen posts here on Stackoverflow that describe how to allow users to be directed to apps on the app store. Is there a way to link directly to the rating and comments form in the App Store? |
|||||||||||||
|
|
This IS possible using the technique described on this blog: http://www.memention.com/blog/2009/09/03/Open-Reviews.html basically you call UIApplication openURL with the following:
To get your app ID before your app is available in the app store, use iTunesConnect to define your new app - give it a name, description, icon, screenshots, etc. Once defined, you can get the Apple ID from the Identifiers section for the app. EDIT: Here is a secondary url/method that works:
I believe the difference between the two is that the first technique (itms-apps://) will launch the App Store app directly while the second one (http://) will launch it indirectly via a redirect resulting from the http web URL. This would have to be confirmed; this is only my recollection. |
|||||||||||||||||
|
|
I wrote a library for doing this with minimal effort on your part: https://github.com/nicklockwood/iRate I'd recommend using a library rather than rolling your own solution. It may seem like a simple problem but the library takes care of a whole bunch of extra stuff, like automatically prompting the user based on time installed or number of uses, etc, and ensures that the user isn't prompted unless they have a network connection. |
|||||||||||
|
|
AskingPoint has a free App Analytics API that includes a Rating Widget that will take users directly to your App Store page for you. www.askingpoint.com
Full disclosure, im a Co-Founder. But check it out it's free. |
|||
|
|