Skip to main content
Inspiring
August 2, 2012
Answered

Anticipate app store url before publish

  • August 2, 2012
  • 6 replies
  • 1189 views

Sorry if this is a silly question.

My app links to itself in the app store to nag for ratings. How can i determine this url before the app is published to the app store?

thanks

This topic has been closed for replies.
Correct answer Colin Holgate

Here's a piece of trivia for you: the first iPhone had a codename of "purple". That still shows up sometimes, like when going to the review page. Here's how I get to the review page for my app:

navigateToURL(new URLRequest("itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=514220257"),"_blank");

That last number (514220257) is the ID for one of my apps, which you would replace with your ID. As you submit an app you will at some point know the ID for it. You will want to do one last build of the IPA, changing the URL to match the ID that you've been given.

6 replies

Colin Holgate
Colin HolgateCorrect answer
Inspiring
August 2, 2012

Here's a piece of trivia for you: the first iPhone had a codename of "purple". That still shows up sometimes, like when going to the review page. Here's how I get to the review page for my app:

navigateToURL(new URLRequest("itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=514220257"),"_blank");

That last number (514220257) is the ID for one of my apps, which you would replace with your ID. As you submit an app you will at some point know the ID for it. You will want to do one last build of the IPA, changing the URL to match the ID that you've been given.

boat5Author
Inspiring
August 2, 2012

Can I assume this

http://itunes.apple.com/us/app/name-of-app/id1234567890?mt=8

..with the id being my "person id" from apple

but what is the mt=8

Colin Holgate
Inspiring
August 2, 2012

While this works, that will take you via Safari. The one I gave takes you straight to the review page inside the App Store app.

boat5Author
Inspiring
August 2, 2012

nice, thank you