Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get itunes link for app before submitting

People also ask

How do I get the URL for App Store?

Navigate to My Apps > [the app whose link you want], then under More, you'll see "View on App Store". Right click that and copy the link.

How do I share my Apple app link?

On your Android device, just open up the Android Market and select the app you want to share, then scroll down to "Share This Application" to either email, text or Facebook message it to someone. But there are more convenient options than these standard ones.

How do I submit an app to Apple without an account to the App Store?

Go back to the Developer Center in your browser; you should now click Continue. Click Choose File…, locate the CSR file you just created and select it, then click Continue. Go through the same process as before to submit the same certificate signing request you used for your development certificate.


  • The manual way:

Your should copy your "Apple ID" from iTunes connect and use this link:

http://itunes.apple.com/us/app/APPNAME/idXXXXXXXXX

Would open the US store ("APPNAME" is that app name and XXXXXXXXX is the "Apple ID". You can use more general method (Recommended):

http://itunes.apple.com/app/idXXXXXXXXX

and replace "XXXXXXXXX" with your "Apple ID" (from iTunes connect - after creating the app there).

Pay attention that those would open safari if you won't preprocess them, You could also use itms:// to open iTunes directly.


The easiest way to do this now is through iTunes Connect. Once you create an app there is a link to 'View in App Store'. Even if you haven't uploaded a binary yet you can click this link to get your App Store link.

The other answers work too but this generates your url for you. This is the URL it creates with my info removed (replace app-name and the numbers after /id with your own):

https://itunes.apple.com/us/app/app-name/id12345678?ls=1&mt=8

Once you create application in iTunes for submission under App Information tab click in View on App Store you will get app link.

enter image description here

Option 2: (In new update this is no longer available) you can create as below

https://itunes.apple.com/in/app/your-appname/id123456?mt=8

Note : Just replace app name and numbers after /id with your app-id in above link


Use this url example and just change your Apple ID at the end! Replace only the numbers!

https://itunes.apple.com/app/id111111111

You can find the value of your Appple ID by login into your App Store Connect and navigating to 'My Apps' under the 'App Information' -> 'General Information' -> 'Apple ID'

This url format works always and it is particularly helpful if you need the link before you publish your app


The standard URL is:

http://itunes.com/apps/yourlowercaseappname

As of today and for reference, I would say the best option is @"http://itunes.apple.com/app/%@/id%@?mt=8", inserting:

  1. your application lowercase name,
  2. your application ID.

In fact, this is essentially the link you can get for your application on your app's page in iTunes Connect (iTunes Connect > Manage Your Apps > Your App > View in App Store). Minus some parameters (which seems - between other unidentified things - to link to a precise country).

I thinks it's better than the itms://... one because this one redirects you to the iTunes Store on your device, which is not the App Store. You're then redirected, etc. The http://... link seems to be directly hooked to the App Store app.