Question

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

Was it helpful?

Solution

This should return you the playlist with all subscribed podcasts:

var podCastPlaylist = new iTunesAppClass()
    .LibrarySource
    .Playlists
    .Cast<IITPlaylist>()
    .First(pl => pl.Name == "Podcasts")

OTHER TIPS

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top