How can I get a list of all subscribed podcasts using the Itunes SDK?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

This should return you the playlist with all subscribed podcasts:

var podCastPlaylist = new iTunesAppClass()
    .LibrarySource
    .Playlists
    .Cast<IITPlaylist>()
    .First(pl => pl.Name == "Podcasts")
link|improve this answer
And it does, but what I am really looking for is the podcasts, not the episodes/tracks. I was hoping that could lead me to the URL's for the underlying feeds. Maybe it is simply not possible with the SDK? – Kjensen Aug 10 '11 at 18:56
feedback

You can't get the feed urls, podcast titles etc, from what I have been able to dig up.

You can get the podcast episodes tracks however, using the code supplied by Flagbug.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.