Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I read in another post that you can submit the app without the binary but I based on what I have seen this is no longer possible. It seems you cannot submit without the binary and the binary is submitted through the application loader. Is there any other known way to get the itunes/app store link to my app before I submit the binary?

share|improve this question

5 Answers

The standard URL is:

http://itunes.com/apps/yourlowercaseappname
share|improve this answer
1  
no need to worry about the app ids and other stuffs.:) – Muhammed Sadiq.HS Mar 20 '12 at 11:53

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

http://itunes.apple.com/us/app/cap-that!/id542207157

Would open the US store ("cap-that!" is that app name and 542207157 is the "Apple ID". You can use more general method:

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

and replace "542207157" with your "Apple ID".

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

I recommend using Apple link maker

share|improve this answer

You can get application link before uploading your binary file on iTunes Connect.

You just need to upload your meta data using iTunes Connect. And after submitting these data you will get Apple ID. And by this ID you can get the URL for your application.

e.g. http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=appID

where appID="Your application ID when you submit the meta data"

Please check this. It is working here. And If you still have any problem then please let me know. I will help you out to solve the problem.

share|improve this answer

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.

share|improve this answer
+1, thanks for the idea .:) – mAc Feb 13 at 12:47
u can omit the app name actually – OMGPOP May 9 at 6:00
up vote 3 down vote accepted

I ended up using - itms://itunes.apple.com/app/id?mt=8 This seems to be what I was looking for.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.