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.

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?

share|improve this question

13 Answers

up vote 225 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

share|improve this answer
83  
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
8  
See: developer.apple.com/library/ios/#qa/qa1633/_index.html (White space should just be removed.) – Nathan S. Apr 18 '11 at 2:53
4  
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
3  
This should be tested on a real device. – Protocole Feb 7 '12 at 9:31
2  
This SHOULD be tested on a real device, yes! I struggled with nothing happening for about an hour before plugging the iPad in and testing it there. Geh. – Kalle Aug 16 '12 at 18:42
show 12 more comments

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.


EDIT: APR, 2013. This no longer works in iOS5 and above. Just use

http://itunes.apple.com/app/id378458261

and there are no more redirects.

share|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
show 1 more comment

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

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:

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

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

share|improve this answer
2  
THAT'S the answer I was looking for! – Olie Mar 1 '11 at 0:29
This doesn't work on iOS 6.0.1. It links to iTunes, not AppStore app, and will display a Item Not Found screen :/ – Hlung Nov 30 '12 at 9:42
Hlung, I'm running iOS 6.0.1 on my iPhone5 and my deployed app links to the App Store just fine, are you sure that you have the correct URL? – Intentss Dec 1 '12 at 5:33
1  
@Hlung Don't try this on the simulator as this will - of course - not work, because there is no AppStore in simulator... on the device it works. – jimpic Apr 11 at 6:41

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

share|improve this answer
3  
This doesn't seem to work anymore with 3.0. – KiwiBastard Jul 20 '09 at 21:28
3  
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

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

share|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 '12 at 12:40
You could also try to encode those "special" chars - i.e. replace "." with "%2E" – wzs Mar 7 '12 at 8:50
that is THE prefect answer! – Sam Budda Mar 1 at 23:50

This code generates the App Store link on iOS Automatically

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];
share|improve this answer
This works, but you also have to remove special characters like dashes from the app name. – BlackRider Apr 30 '12 at 17:27
Thank you @3 revs and @BlackRider – G.Ganesh Mar 19 at 11:30

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

share|improve this answer

To have a direct link without redirection :

  1. Use iTunes link maker http://itunes.apple.com/linkmaker/ to get the real direct link
  2. Replace the http:// with itms-apps://
  3. Open the link with [[UIApplication sharedApplication] openURL:url];

Source : https://developer.apple.com/library/ios/#qa/qa2008/qa1629.html

share|improve this answer
2  
+1 for itunes.apple.com/linkmaker – Shivan Raptor Jul 23 '12 at 3:35

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]];
share|improve this answer

This worked for me perfectly using only APP ID:

 NSString *urlString = [NSString stringWithFormat:@"http://itunes.apple.com/app/id%@",YOUR_APP_ID];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlString]];

The number of redirects is ZERO.

share|improve this answer
3  
works for me on iOS 6.0.1 :) – Hlung Nov 30 '12 at 9:44

You can get a link to a specific item in the app store or iTunes through the link maker at: http://itunes.apple.com/linkmaker/

share|improve this answer

Also you may want to have a look at this wiki where redirects and Special PreFixes for other Apps are explained and shown:

IPhone Url Schemes

share|improve this answer

You can solve it easily with a remote redirection page. See at my blog: http://gotoandplay.freeblog.hu/archives/2010/11/03/Tangram_098_-_App_Store_link_to_the_full_versionreviews_before_even_submit_the_application/

share|improve this answer
Brutal......... – PsychoDad Sep 17 '12 at 15:47
this is not the place for spams..!! – akshaynhegde Dec 12 '12 at 8:23

protected by Community Feb 20 '12 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.