views:

1482

answers:

3

Is there a way to open the app store to a specific application? I tried using something like the following:

[[UIApplication sharedApplication] openURL: [NSURL URLWithString:@"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284417350&mt=8&uo=6"]];

But got the following: "Safari cannot open the page because to many redirects occurred".

+1  A: 

Use http://itunes.com/app/YourAppNameWithoutSpaces

See also this.

MrMage
The same thing happens when the shorter URL is used.
Zenox
I tried to be helpful, but you don't motivate people by downvoting a possibly helpful answer! I'll think twice the next time before answering a question of yours.
MrMage
Sorry to downvote, my intent was not to demotivate, but rather if someone else has this issue and they read this post, it saves them from trying it.
Zenox
I found this useful. If you did too, upvote this comment.
Reed Morse
+2  A: 

Apparently this issue only effects the simulator. A build an go on the debug works perfect.

Zenox
A: 

http://www.appstoresdk.com/ does the trick

Ray Kreisel