I\'m adding links in my game so players can rate and see more games of the same developer.
For rating I\'m using
itms-apps://itunes.apple.com/app/id
For view Application page :
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms://itunes.apple.com/us/app/APPNAME/idApp?mt=8&uo=4"]];
//APPNAME = Application name, idApp = Application unique id
For view App from the developer
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms://itunes.apple.com/us/artist/DEVNAME/idDEVID?uo=4"]];
DEVNAME = Developer name in small chars, idDEVID = developer id, you can get it from iTunes.
Update 1
If you have your App Id then you can get your developer id like,
https://itunes.apple.com/lookup?id=YourAnyAppID
Run this in web browser, and in response search for artistViewUrl word, this will give you URL, that List all APPs from Same Developer
Just keep in mind that replace http to itms to stop redirection.
Update 2
List all app of a developer , from: appstore.com/{developername}.
Get our single app link, from: appstore.com/appname. You can get this things when app get published.
May this helps.
HTH, Enjoy Coding!!
It's really simple to link to the list of a developer's iOS apps or a single iOS app.
Link to all of a developer's apps, in list form: appstore.com/developername so since my apps show up as by Henry Stern you can find my apps at appstore.com/henrystern.
Link to a single app: appstore.com/appname so since one of my apps is named "NoteFlow—one note for life" you can find it at appstore.com/noteflow—onenoteforlife.
If you want the full long link to an app or your own classic "Available on the App Store" banner you can find that at the official iTunes Link Maker.