Reputation: 1162
An old post discussed how to send iPhone app users to an app store review page directly
However, the link template:
is no longer works in iOS 4.3. Does any know how to link user to the review page in iTunes directly?
Upvotes: 2
Views: 5564
Reputation: 5237
Now that Cordova/PhoneGap uses the plugin InAppBrowser for links, the correct syntax is:
window.open("itms-apps://itunes.apple.com/us/app/scorekeepr-free/id490888743?ls=1&mt=8","_system");
This was tested in a real app with Cordova-iOS 2.3.0rc2 on an iPad running iOS 5.1
Upvotes: 0
Reputation: 7182
Also works with PhoneGap/Cordova:
or
replace the id param's value with your App's id
Upvotes: 1
Reputation: 70997
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]];
Upvotes: 10