views:

184

answers:

4

Hi All :)

I have an App i am developing. Part of the functionality allows the user to send an e-mail to friends from the App.

In this E-mail i would like to have a link to my App in the iTunes store.

I was wondering if it is possible to do this before your app has been submitted?

Or would i have to send an update as soon as the app is available and has a URL?

Any help would be appreciated

A: 

Well, your app doesn't have a URL until it is submitted and approved for the App Store, so it would really be impossible to include this link until the app is actually on the store.

Programasaurus
+1  A: 

I doubt you can do this. You should update the URL somehow after it will be available on iTunes.
But.. the trick could be to extract the URL from external internet resource. Say, from the file, that is hosted somewhere by you.

Andrejs Cainikovs
+5  A: 

The best way of going about this would be to have your own canonical URL for your app on a domain of your own which redirects to the app store. This could be something like 'http://www.mygreatapp.com/download'. You could set this up with a basic Apache directive or a simple META redirect in an HTML page.

Create a basic holding page at the above URL ('coming soon' etc.) and once the app is approved, it will take only a minute or two to update the page to redirect to the iTunes URL.

Bonus side-effect: you now have a canonical URL which is much easier to type and pass on to others compared to the long iTunes URL.

Luke Redpath
Thanks a bunch matey... i have implemented it this way :)
Tom G
+1  A: 

Actually, you can do this. You can get your Application ID by clicking on "App Details" in iTunes Connect, even if the application hasn't been approved yet.

the iTunes link generator makes URLs like

http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=320463484&mt=8&uo=6

so you just have to substitute your ID in.

This should work if you just want your app to be able to link to itself; I wanted the "Lite" version of my app to link to the "Deluxe" version, and the link is correct but not useable because one has been approved and the other hasn't!

David Maymudes
Unfortunately this doesn't solve the problem as he would need to know his Application ID *before* submission.
Luke Redpath
That's my whole point--you *do* know it, at least without waiting to be approved...
David Maymudes