Link to list all apps by a developer in iPhone's App Store

北城余情 提交于 2019-12-01 10:39:44

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.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!