Search code examples
iositunesreviewapp-store

iTunes review URL


An old post discussed how to send iPhone app users to an app store review page directly

However, the link template:

https://userpub.itunes.apple.com/WebObjects/MZUserPublishing.woa/wa/addUserReview?id=337064413&type=Purple+Software

is no longer works in iOS 4.3. Does any know how to link user to the review page in iTunes directly?


Solution

  • Try this

    NSString *str = @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=337064413"; //replace the id param's value with your App's id
    
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];