I am trying to programmatically open the Mac App Store in a custom Mac App. I started with the link below.

http://itunes.apple.com/us/app/angry-birds/id403961173?mt=12

I tried the following code, however it opens the browser rather than the Mac App Store.

[[NSWorkspace sharedWorkspace] openURL:
 [NSURL URLWithString:@"http://itunes.apple.com/us/app/angry-birds/id403961173?mt=12"]];

Any suggestions on how I can do this?

link|improve this question

feedback

3 Answers

up vote 14 down vote accepted

URLs of this pattern open up the Mac App Store:

macappstore://itunes.apple.com/app/id403961173?mt=12

So in your case:

[[NSWorkspace sharedWorkspace] openURL:
 [NSURL URLWithString:@"macappstore://itunes.apple.com/app/id403961173?mt=12"]];

will open the MAS and load the product page associated with id #403961173 (here: Angry Birds).

To just load the MAS, with no particular product page use this URL:

[[NSWorkspace sharedWorkspace] openURL:
 [NSURL URLWithString:@"macappstore://itunes.apple.com/"]];
link|improve this answer
Thanks. That is awesome. – David Apr 13 '11 at 23:16
Indeed it is. :) It's called a URI scheme, btw. ;) You can even register your own for your app Particularly handy for incorporating bookmarklet support. ;) – Regexident Apr 13 '11 at 23:20
Perfect. That's good to know. Thank you again. – David Apr 13 '11 at 23:22
feedback

open the webpage in a UIWebView. the webview will then open itunes, or at least ask to open itunes.

that may be iphone specific. but whatever the WebView is for mac.

link|improve this answer
feedback

How about:

[[NSWorkspace sharedWorkspace] launchApplication:@"/Applications/App Store.app"]
link|improve this answer
2  
This will only open the MAS. But what it won't allow you is to choose a product page to open it with. That's where the URL scheme comes into play. – Regexident Apr 13 '11 at 23:12
Though if you want to open a specific app in the App store, then Regexident's answer is better. – Marc Abramowitz Apr 13 '11 at 23:14
feedback

Your Answer

 
or
required, but never shown

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