4

i'm trying to get the latest podcast informations out of "itunes store" to work with this data in several applications (iphone app and web app).

Is there a way to get this informations? RSS, JSON or something?

i want to work with this informations in objective-c and on a website with php or js.

Is my question clear? :(

//edit: anything unclear? leave a comment, if yes

choise
  • 24,636
  • 19
  • 75
  • 131
  • Are you trying to get an aggregated feed of generally "the latest podcasts as seen on iTunes", or are you interested in a feed of a specific podcast? – deceze May 14 '10 at 06:03
  • yes i want a specific "feed" or something of a specific podcast, so that i can get the latest episodes (name, date, lentgh e.g.) – choise May 14 '10 at 07:15
  • What exactly do you want to get out of the store? It just provides a directory to find RSS feeds of podcasts, but the feeds do not go through the store. Are you asking for programmatic access to the directory? – deceze May 17 '10 at 01:26
  • yes i do. i want to get all episodes from one specific podcast (the name, the publish date and a link to the store, if its possible) – choise May 17 '10 at 05:53
  • 1
    I'm still unclear on what you want to do. If you want to get all episodes of one specific podcast, you don't need to go through the store. The podcast has its own feed somewhere independent of the store. For example, the TWiT podcast is at leoville.tv/podcasts/twit.xml. – deceze May 17 '10 at 07:16
  • okay fine, that sounds good. any way to get this url for a podcast? – choise May 17 '10 at 11:04
  • Sorry, please be clear: Do you want the URL of *a* podcast? Then I'm not sure where the problem is; just go to the website of your podcast of choice and look for the RSS feed. Or are you looking for **URLs** of **podcasts** (plural), i.e. a directory API? These are two very different things and I'm still not sure which one you want. – deceze May 18 '10 at 01:10
  • so i want the URL of the RSS feed! isnt there another way then to go to the website of this podcast and search for the feed? some podcasts dont publish their RSS Feed. I'm looking for a way to get the RSS Feed URL of a Podcast out of iTunes. – choise May 18 '10 at 07:25

4 Answers4

10

Based on your question, I just tried to find a way to do this.

  1. So you'll need the podcast ID (should be obvious from the URL if you have it; for instance http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=82884735 has the ID "82884735", and http://itunes.apple.com/us/podcast/this-week-in-tech-mp3-edition/id73329404 has the ID "73329404").

  2. ???

  3. Plug the ID into the URL https://buy.itunes.apple.com/WebObjects/MZFinance.woa/wa/com.apple.jingle.app.finance.DirectAction/subscribePodcast?id={ID}&wasWarnedAboutPodcasts=true and get the data, where {ID} is your podcast ID. It's important here to change your user agent string to iTunes. For this experiment, I used "iTunes/7.4.1". If you don't change it, you'll get something very different.

  4. You'll end up with XML data; an XML plist enclosed in Document and Protocol tags. It will look like

    <Document> <Protocol> <plist version="1.0"> ... </plist> </Protocol> </Document>

You can pull the plist data from this and use a library to manipulate it if your language of choice has one. Essentially there'll be a "root" dictionary and a dictionary inside it called "subscribe-podcast". This "subscribe-podcast" dictionary will have a key called "feedURL" – nab the value, and you'll have your RSS feed. I'd recommend trying these steps and following along.

An easier to follow representation of the plist is the NeXTSTEP format, which actually looks a bit like JSON. An excerpt of a dummy podcast plist transformed into this format is as follows (remember that you'll really be getting back an XML-like file):

{
    "subscribe-podcast" = {
        …
        feedURL = "http://feeds.feedburner.com/yaddayaddayadda"; 
        …
        podcastName = "Lorem Ipsum"; 
        …
    }; 
}

Now you'll notice in the steps I described that step 2 is missing. This is because I looked at the data that Apple was giving me back manually to get to the URL in step 3. Chances are that you'll want to parse the data yourself in case Apple decides to change the URL, but maybe it's probable for the intermediate HTML to change and break your program anyway. I might go back and look at documenting the steps that should be taken to get at our magic URL in step 3.

I tried out this strategy with a few podcasts, and it seems to work well in giving me the RSS feed. Since I don't know any of the languages that you asked for, I can't make any recommendations code-wise. Hope it can get you on your way, though.

Volt
  • 116
  • 2
7
  1. Extract id from iTunes-url https://itunes.apple.com/de/podcast/ard-radio-tatort/id310864997?mt=2&uo=2 (in this example "310864997")
  2. You can extract the id, by using the following regex: /id(\d+)/
  3. Enter id into the following url, to get the feed information via Apple's api https://itunes.apple.com/lookup?id={FEED_ID}&entity=podcast
  4. The lookup service will return a JSON file. You will find the rss url at the 'feedUrl'-field inside the JSON.

There are two adavantages over Volt's solution.

  1. You don't have to fake the browser agent.
  2. You get clean and simple JSON as response.

If you want to see an live example, have a look at xTunes-Podcatcher, where I implemented the above described technique/steps myself. Just enter your iTunes podcast url and get the RSS url out of it.

netblognet
  • 1,951
  • 2
  • 20
  • 46
-1

If there is an RSS feed for the data you're looking for, you can use this RSS/Atom Parser for iPhone I've just released.

Hope it can be of some use!

Michael Waterfall
  • 20,497
  • 27
  • 111
  • 168
-2

I got the required podcast rss from feedburner.com indirectly. i couldnt find it from the site. but i searched google for the required 'podcast name' along with feedburner in the keyword. The search result had the podcast rss page corresponding to the name from feedburner.

ArunGJ
  • 2,685
  • 21
  • 27