0

Don't get this confused with the itunes linking. I know how to send a user to iTunes Store app with purple logo and that is not I want. I want to send the user to App Store app with blue logo.

itms://itunes.apple.com/us/app/myappname/myappid

Already checked this post, didn't answer my question: How to link to apps on the app store

Community
  • 1
  • 1
Esqarrouth
  • 38,543
  • 21
  • 161
  • 168
  • There is no URL Scheme to the App Store there is only the URL Scheme to iTunes. Checkout https://developer.apple.com/library/ios/featuredarticles/iPhoneURLScheme_Reference/Introduction/Introduction.html So that link you have provided probably provides the best possible answer since you can't open the App Store. – Popeye Feb 26 '15 at 10:43
  • By the looks of it the Apple Documentation isn't up to date if `Gary Riches` answer works. – Popeye Feb 26 '15 at 10:55

1 Answers1

1

The follow link sends someone to the App Store on iOS and allows them to review my app. Change the parameters and it will go to the App Store for your app:

itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Bouncing+Ball+Games&onlyLatestVersion=true&pageNumber=0&sortOrdering=1&id=926193671

Sample code to open within an app:

NSString *iTunesLink = @"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Bouncing+Ball+Games&onlyLatestVersion=true&pageNumber=0&sortOrdering=1&id=926193671";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:iTunesLink]];
Gary Riches
  • 2,847
  • 1
  • 22
  • 19