0

How can i get playlist feed in asp.net through Youtube APT. I got Totalresult =o when i tried to fetch data. Please see the image below:

enter image description here

Please suggest me how to do this.

Thanks.

Sukhjeevan
  • 3,074
  • 9
  • 46
  • 89
  • follow this link, in this sample show how you can use Google PAI http://stackoverflow.com/questions/22613903/youtube-api-v3-get-list-of-users-videos – MahmoudFawzy May 23 '15 at 01:26

1 Answers1

0

try this

Feed<Video> videoFeed = request.Get<Video>(new Uri(feedUrl));

        //Iterate through each video entry
        foreach (Video videoEntry in videoFeed.Entries)
        {

.
.
.

Dynamically Output A List of YouTube Videos In ASP.NET

Raab
  • 34,778
  • 4
  • 50
  • 65