App Not Released, How to make a "More Games" Button?

I am about ready to put two Android to iOS ports up for review with Apple but I am stuck with one very last minor problem. I have looked at the various URL schemes on how to open up a developer page in the App Store app, but my problem is I do not think I have a link yet since I have no apps out. Can anyone tell me if there is a way to handle this? If not, should I just remove the “More Games” button and add it with an update?

you could have your app make an http request to your own server when it opens to get the ID of your app.  You update the appID on your server once you have it.  

That actually sounds like a really good idea. I will definitely try this and use the appstore.com/somethign url’s

you can also experiment with opening a web popup to a page on your server.  and that web popup can talk back to your app.  general approach here

http://stackoverflow.com/questions/16889248/return-data-on-showwebpopup

just make sure you’re handling the case properly where there’s no internet connection - e.g. tell user they must be connected to internet

you could have your app make an http request to your own server when it opens to get the ID of your app.  You update the appID on your server once you have it.  

That actually sounds like a really good idea. I will definitely try this and use the appstore.com/somethign url’s

you can also experiment with opening a web popup to a page on your server.  and that web popup can talk back to your app.  general approach here

http://stackoverflow.com/questions/16889248/return-data-on-showwebpopup

just make sure you’re handling the case properly where there’s no internet connection - e.g. tell user they must be connected to internet