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.

I am creating an iPhone game. I want to have a button in my game that takes people to the other games by me. I get the URL from the iTunes (copy URL) like this:

http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewArtist?id=307450671

But when I open this URL in iphone, it take me to the iTunes, not App Store. and I also tried http://phobos...., not working too.

Any ideas? What is the URL Scheme for the artist page or search page of app store?

Thanks

share|improve this question

2 Answers

up vote 5 down vote accepted

ok, I get that link:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://phobos.apple.com/WebObjects/MZSearch.woa/wa/search?submit=seeAllLockups&media=software&entity=software&term=CloudWonder"]];

replace the term with my search keyword will get it work.

share|improve this answer

You should be able to make a link to your company like this:

http://itunes.com/MyCompanyName

At least I know it works for me:

http://itunes.com/Rebisoft

You can do something similar for apps:

http://itunes.com/app/Scribattle

share|improve this answer
This solution is better than zhongshu's one, as itunes.com/MyCompanyName will only display the apps from "MyCompanyName" and not those from companies whose name contains "MyCompanyName" (that would be the result of zhongshu's solution). – Ruben Esposito Aug 3 '11 at 14:22
how can this be done? – johndpope Sep 28 '11 at 0:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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