So I am creating a free version of my iPhone game. I want to have a button inside the free version that takes people to the paid version in the app store. If I use a standard link

http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=300136119&mt=8

the iphone opens safari first, and then the app store. I have used other apps that open the app store directly, so I know it is possible.

Any ideas? What is the URL Scheme for the app store?

link|improve this question
feedback

9 Answers

up vote 110 down vote accepted

From http://developer.apple.com/iphone/news/archives/2010/january/

Drive Customers Directly to Your App on the App Store with iTunes Links With iTunes links you can provide your customers with an easy way to access your apps on the App Store directly from your website or marketing campaigns. Creating an iTunes link is simple and can be made to direct customers to either a single app, all your apps, or to a specific app with your company name specified.

To send customers to a specific application: http://itunes.com/apps/appname

To send customers to a list of apps you have on the App Store: http://itunes.com/apps/developername

To send customers to a specific app with your company name included in the URL: http://itunes.com/apps/developername/appname

Additional notes:

You can replace http:// with itms:// or itms-apps:// to avoid redirects.

For info on naming, see QA1633: https://developer.apple.com/library/ios/#qa/qa1633/_index.html

link|improve this answer
56  
A tip is to use itms:// instead of http://, then it'll open in the app store directly. On the iPhone, it will make 2 (!) redirects when using http, and 1 when using itms. When using the older phobos links (see above), there are 0 redirects. Use the id from iTunes Connect if using phobos links. You can choose to submit an app without including the binary. This way you will get the id before you submit the actual binary. I haven't tried this, but I've heard it works. – quano Mar 14 '10 at 1:59
1  
Is there a way to link like this and still maintain affiliate status? – radven Dec 21 '10 at 0:57
1  
I'm not sure. You might want to ask this as a separate question, as you are likely to get more answers that way. – Nathan S. Dec 21 '10 at 19:06
5  
See: developer.apple.com/library/ios/#qa/qa1633/_index.html (White space should just be removed.) – Nathan S. Apr 18 '11 at 2:53
2  
Except...what is the correct value to use for appname? Is it the app's "Bundle Display Name"? Is it case-insensitive? How are blank spaces handled, etc.? – aroth Sep 23 '11 at 0:51
show 5 more comments
feedback

If you want to open an app directly to the App Store, you should use:

itms-apps://...

This way it will directly open the App Store app in the device, instead of going to iTunes first, then only open the App Store (when using just itms://)

Hope that helps.

link|improve this answer
3  
This is an excellent tip. – William Denniss Jan 15 '11 at 5:49
I don't think this is necessary any longer. I use http in my app and it goes straight to the App Store app. – PEZ Jan 17 '11 at 19:55
@PEZ As of today, I'm seeing two redirects when using http://... The answer works perfectly for me - itms-apps://... directly opens the App Store app on device, without any redirects. – Josh Brown Feb 3 '11 at 7:20
I admit, i didn't trace the requests. =) I'll change to imts-apps too now. – PEZ Feb 3 '11 at 9:04
helps a bunch, thanks. fwiw, using just "itms:" on ipad2/ios 4 i get a redirect, and with "itms-apps:" i don't. – orion elenzil Aug 8 '11 at 3:19
feedback

To be extreamly concise:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms://itunes.com/apps/appname"]];

If you want to send to all the apps for a developer, use

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms://itunes.com/apps/developername"]];

These work for iOS 4.1

link|improve this answer
2  
THAT'S the answer I was looking for! – Olie Mar 1 '11 at 0:29
feedback

Simply change 'itunes' to 'phobos' in the app link.

http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=300136119&mt=8

Now it will open the App Store directly

link|improve this answer
3  
This doesn't seem to work anymore with 3.0. – KiwiBastard Jul 20 '09 at 21:28
2  
Works like a champ on 3.1. – runako Oct 11 '09 at 21:44
4  
itms:// is the protocol handler for appstore links... – jb. Mar 7 '10 at 7:27
feedback

The official Apple way of doing this is covered in this tech QA note

link|improve this answer
feedback

If you want to link to a developer's apps and the developer's name has punctuation or spaces (e.g. Development Company, LLC) form your URL like this:

itms-apps://itunes.com/apps/DevelopmentCompanyLLC

Otherwise it returns "This request cannot be processed" on iOS 4.3.3

link|improve this answer
If this doesn't work for you, try the following syntax: itms-apps://itunes.com/apps/ChuckSmith/id290402113 replacing my name with your company and my ID with your Artist ID which you can get from the iTunes link maker: itunes.apple.com/linkmaker – Chuck Smith Jan 10 at 12:40
You could also try to encode those "special" chars - i.e. replace "." with "%2E" – wzs Mar 7 at 8:50
feedback

This is working and directly linking in ios5

NSString *iTunesLink = @"http://itunes.apple.com/app/baseball-stats-tracker-touch/id490256272?mt=8";  
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:iTunesLink]];
link|improve this answer
feedback

This code generates the App Store link on iOS

NSString *appName = [NSString stringWithString:[[[NSBundle mainBundle] infoDictionary]   objectForKey:@"CFBundleName"]];
NSURL *appStoreURL = [NSURL URLWithString:[NSString stringWithFormat:@"itms-apps://itunes.com/app/%@",[appName stringByReplacingOccurrencesOfString:@" " withString:@""]]];

Replace itms-apps with http on Mac:

NSURL *appStoreURL = [NSURL URLWithString:[NSString stringWithFormat:@"http:/itunes.com/app/%@",[appName stringByReplacingOccurrencesOfString:@" " withString:@""]]]; 

Open URL on iOS:

[[UIApplication sharedApplication] openURL:appStoreURL];

Mac:

[[NSWorkspace sharedWorkspace] openURL:appStoreURL];
link|improve this answer
This works, but you also have to remove special characters like dashes from the app name. – BlackRider Apr 30 at 17:27
feedback

protected by Community Feb 20 at 11:03

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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