How can I list all my iOS apps programmatically over the Internet?

I would like to collect all the iOS applications that I have on my iTunes account programmatically through a website script, applet, or anything else that is possible over the Internet. The idea is to have a webpage where I can enter my iTunes credentials and then display all of these apps.

It seems that Apple does not offer an open API to do this, and what is the best way to do this?

The only way I can think of is to use an applet that reads XML files in the iTunes directory on my computer, but this is a bad solution for me for several reasons.

EDIT: The solution should be valide for any user (not just iOS developer)

+5
source share
2 answers

You can use the iTunes Store Search API to search for apps by the name of your developer, and then filter the results by developer ID in case anyone has a similar name.

+1
source

This may interest you: http://www.apple.com/itunesaffiliates/API/AffiliatesSearch2.1.pdf

This is the iTunes Store Search API document. This could be a starting point.

0
source

All Articles