Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was wondering if it is possible to take my user directly to the review section of my app on the app store from within my app?

I don't want this to open in Safari, I want it to directly open the App Store app on the device and take them to the review page.

I have tried the following;

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=437688779&onlyLatestVersion=true&pageNumber=0&sortOrdering=1&type=Purple+Software"]];

However, clicking that seems to open up the iTunes app and not app store and then just gives an error saying "Cannot Connect to the store. A secure connection could not be established".

Any ideas?

share|improve this question

3 Answers

up vote 6 down vote accepted

As seen in this blog:

- (IBAction)gotoReviews:(id)sender
{
    NSString *str = @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa";
    str = [NSString stringWithFormat:@"%@/wa/viewContentsUserReviews?", str]; 
    str = [NSString stringWithFormat:@"%@type=Purple+Software&id=", str];

    // Here is the app id from itunesconnect
    str = [NSString stringWithFormat:@"%@yourAppIDHere", str]; 

    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];
}
share|improve this answer
That worked perfectly. Thank you very much ender. – LittleRedDoor Sep 21 '11 at 11:29

You want an itms:// link, and here's a handy place to generate one. Make sure you change the protocol from http(s): to itms: (or itms-apps: which seems to be the new way).

share|improve this answer
Hi, I have tried that also. Sorry, should have mentioned. Also does not work – LittleRedDoor Sep 21 '11 at 11:22
Make sure you change the protocol from http(s): to itms: – Pål Brattberg Sep 21 '11 at 11:24

You can just use the class iRate, did work well for me.

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.