Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you determine the app store (country) availability of an iOS application given its App ID? [closed]

Tags:

ios

app-store

How do you determine the app store (country) availability of an iOS application given its App ID? Some have posted asking a similar question but "inside" an app. I'm looking for the answer "outside" of the app like on a standard browser. I know that a brute force way of doing it is to just parse every country code out there and see if it returns some data, but I'm looking for a way to do it in a more strategic way.

like image 315
Chris Lee Avatar asked May 21 '12 05:05

Chris Lee


People also ask

How do I get an app that isn't available in my country apple?

On your Android phone or tablet, open the Google Play Store. Tap Menu, then Account, and then Country and profiles. Tap the country where you want to add an account.

How do I select countries to be released in App Store?

Go to Play Console. Select an app. Select Release > Production > Countries/regions. Update your app's country selection.


1 Answers

A typical App Store URL looks like this: http://itunes.apple.com/us/app/id494732564

Just replace the "us" with another country code to see if its available in that country, including any localizations. For example, the same app above in German (de): http://itunes.apple.com/de/app/id494732564

Hope this doesn't your definition of "brute force".

like image 53
melsam Avatar answered Sep 28 '22 17:09

melsam