Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to put a "rate/review this app" feature into my app.

Is there a way to link directly to the screen in the app store where they review the app? So the customer doesn't have to click through the main app link. Thanks.

EDIT: starting a bounty on this due to the lack of response. Just to make sure it is crystal clear: I am aware that I can link to my app's page in the store, and ask the user to click from there to the "review this app" screen. The question is whether it is possible to link directly to the "review this app" screen so they don't have to click through anything.

share|improve this question
1  
See my answer here: stackoverflow.com/questions/3011246/… – iWasRobbed Jun 28 '10 at 3:46

4 Answers

up vote 64 down vote accepted
+50

The following works on IPhone (not on IPad):

itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=APP_ID&onlyLatestVersion=true&pageNumber=0&sortOrdering=1&type=Purple+Software

Just replace APP_ID with yours. Also works on Safari if you change itms-apps by http.

source: http://github.com/arashpayan/appirater/

share|improve this answer
27  
Note - the "type=Purple+Software" has to be there and it has to be literally "Purple Software" - it's not the name of your company, it's a codename for iPhone applications :) I wasted an hour before I figured this out... – Psionides Oct 24 '11 at 11:27
3  
BUT WHAT ABOUT IPAD? – OMGPOP Mar 29 '12 at 10:20
2  
This is working on iPad for me. – Ryan Poolos Sep 6 '12 at 19:05
2  
It's worth noting that this doesn't work in the simulator, but it works on an actual device. – Hi there Nov 8 '12 at 21:35
1  
FYI, this seems to work in iPad, but ONLY the second time, never the first time I try it. (After killing iTunes & App Store apps) – Michael Dec 2 '12 at 1:37
show 1 more comment

Everything, written above is correct. Just a sample to insert into the app and change {YOUR APP ID} to actual app id, taken from iTunesconnect to show the Review page. Please note, as it was commented above, that it is not working on the Simulator - just the device.

    NSString * theUrl = @"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id={YOUR APP ID}&onlyLatestVersion=true&pageNumber=0&sortOrdering=1&type=Purple+Software";
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:theUrl]];
share|improve this answer

iOS 4 has ditched the "Rate on Delete" function.

For the time being the only way to rate an application is via iTunes.

Edit: Links can be generated to your applications via iTunes Link Maker. This site has a tutorial.

share|improve this answer
Thanks . . . and what I'm looking for is the iTunes link! – William Jockusch Jun 30 '10 at 15:29
2  
Try the iTunes Link Maker. My understanding is it launches a users copy of iTunes in order to browse the store. I'll edit the answer to place a link in there. – Kynth Jun 30 '10 at 15:43

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

  • It uses your App analytics to only ask your best users to rate you.
  • Settings for who sees it are adjusted from account dashboard in real-time.
  • Its localized into 32 languages.

Full disclosure, im a Co-Founder. But check it out it's free.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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