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

前端 未结 2 1640
栀梦
栀梦 2021-01-15 04:19

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         


        
相关标签:
2条回答
  • 2021-01-15 05:06

    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!!

    0 讨论(0)
  • 2021-01-15 05:07

    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.

    0 讨论(0)
提交回复
热议问题