Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS URI link to an app in App Store (itms-apps)

Tags:

ios

iphone

I can only find secondary sources of information about itms-apps scheme from Stackoverflow and HandleOpenUrl.

Is there any official documentation saying how to use itms-apps or who maintains it?

like image 726
platypus Avatar asked Dec 19 '22 19:12

platypus


2 Answers

From the source from Nick Lockwood's iRate project:

iOS6 (and earlier):

itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=

iOS7:

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

You have to just append the app ID to the strings above to complete the URL.

AFAIK there is no official source of this information, it has probably been reverse engineered.

like image 51
mluisbrown Avatar answered Dec 28 '22 23:12

mluisbrown


I just tried this and it works on iOS9:

itms-apps://itunes.apple.com/app/idID_OF_YOUR_APP and it will open the app directly in the store.

like image 41
Oriol Gual Avatar answered Dec 29 '22 00:12

Oriol Gual