Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is iTunes SDK/API documentation?

Tags:

I downloaded a zipped archive from Apple that consists of a C++ header file and source. Included in this was a help file. For some reason this help file opens but I cannot read the content. Is there any other documentation outside of a help file for this? For c++ or c#?

like image 984
Nick Avatar asked Jun 03 '10 14:06

Nick


People also ask

Does iTunes have an API?

The Search API allows you to place search fields in your website to search for content within the iTunes Store, App Store, iBooks Store and Mac App Store. You can search for a variety of content; including apps, iBooks, movies, podcasts, music, music videos, audiobooks, and TV shows.

Is iTunes API free?

Price: The iTunes Search API is offered for free. Popularity: iTunes is a popular service for playing movies, TV shows, and music. As of May 2018, the digital entertainment service had more than 50 million global paying subscribers.


2 Answers

If you are on Windows, you probably are looking for the "iTunes COM for Windows SDK".

Get a free ADC login here if you haven't done so already. Once you have done that, you can go to http://connect.apple.com and log in.

Click on "Developer Tools", and somewhere in the massive list of results is "iTunes COM for Windows SDK". Download that, it's just an ordinary zip file, and somewhere in there is a directory named iTunesCOMWindowsSDK. In that directory, there is a iTunesCOM.chm file that contains all the reference material you need.

If this is the help file you already have, you could consider decompiling the chm file using the hh.exe tool that comes with Windows.

like image 185
ntcolonel Avatar answered Oct 09 '22 07:10

ntcolonel


It seems the only source for the iTunes COM documentation is now archived on github by https://stackoverflow.com/users/188792/joshkunz

The nice web page is here

http://www.joshkunz.com/iTunesControl/

And the github project is here

https://github.com/Joshkunz/iTunesControl

like image 28
Hogan Avatar answered Oct 09 '22 05:10

Hogan