Add Podcast program to Podcast app programmatically

Windows Phone 8.1 has a new Podcast app. In the old app, I've already implemented a specific podcast with fewer features. So I would like to add the podcast to the podcast app and get rid of my implementation.

Is there an API (i.e. PodcastTask) or url call I can make?

+3


source to share


1 answer


Finally I found a solution. You can use the following:

Launcher.LaunchUriAsync(new Uri("podcast:www.example.com/podcast.rss"));

      



Which opens the poadcast app and directly shows the podcast. It looks like the user was looking for themselves.

0


source







All Articles