What are the AppStore API API URL parameters?

So, I found this URL that does exactly what I want, or, as I suppose.

APP_ID is my iTunes Connect app id

itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?pageNumber=0&sortOrdering=1&type=Purple+Software&mt=8&id=APP_ID 

Here, as I managed to find answers on the Internet, type=Purple+Software for IPhone applications and looks like viewContentsUserReviews , leads me to the Rate and Review page in the AppStore for my application

What is the question here, for the app in appStore there is a shorter version of the line:

 itms-apps://itunes.apple.com/app/idAPP_ID 

This has several options, for example:

 ?ls=1 ?mt=8 ?at=10l6dK 

But I don’t know what these parameters should do (and I want to know), also how can I use this shorter version of the string to determine my Affiliate Code or iTunes Campaign Code ? How can I use this shorter version to redirect the user directly to the Rate Review tab, for example, a long version.

So, to summarize, what are all the parameters that can be passed to this API URL?

+4
source share
1 answer

These parameters are used to optimize SEO in the web version, starting with http:// , so they are not needed for the iOS links of the App Store ( itms-apps:// ). By the way, in this case, these parameters are used for:

  • mt=8 : type of media content (8 = applications, 1 = music, etc. - see link )
  • ls=1 : URL will try to open in iTunes

Please note that the specified long URL does not work with iOS 7, as indicated here .

0
source

All Articles