How to link to iTunes page of my app from within the very same app even before I submit the app to the store?
I am having an app. I am going to submit it to the store. In that app I am having a button that should go to iTunes page of the very same app. I guess there should be a way to do that using app bundle or plist or something..
- If I can do it, How I can do it?
- Is it possible to get the link of an app in itunes s开发者_C百科tore even before it is submitted to the store?
Thank you..
http://itunes.com/apps/myappname
Where "myappname" is your app name minus spaces and all lowercase.
Working examples:
- http://itunes.com/apps/amazon
- http://itunes.com/apps/thevoid
- http://itunes.com/apps/huluplus
The iTunes store URL is something like this.
http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=your_app_id&mt=8
You can get the your_app_id after creating the app in iTunes. That means you just need to create the app to get the URL. No need to submit the app just to get the ID.
After getting the ID, open that URL from the button handler.
You could use the easy-to-read link feature as outlined in this Technical Q&A. Just be aware that this link takes a few minutes to become active after your application has changed state to "Available For Sale".
I answered this two years ago, here: How can I link to my app in the App Store (iTunes)?
精彩评论