Last post Feb 21, 2010 05:32 AM by Beecraq
Member
4 Points
28 Posts
Feb 14, 2010 06:19 AM|Beecraq|LINK
Hi,
I tried using the Youtube APIs and Tools to retrieve video feed of my playlist on youtube but was not successful, has anyone tried this to show me an example. I was trying to retrieve a playlist and feed it on my website. Thanks.
All-Star
32861 Points
7877 Posts
Feb 15, 2010 12:54 AM|qwe123kids|LINK
Hi, http://youtube.codeplex.com/ http://www.dotneat.net/2007/12/20/QueryingYoutubeAPIUsingC.aspx have seen th above link
Feb 15, 2010 04:01 PM|Beecraq|LINK
here is the code I tried if its any help, and the error I got:
Feed<Playlist> userPlaylists = request.GetPlaylistsFeed("myusername"); foreach (Playlist p in userPlaylists.Entries) { Console.WriteLine("Title: " + p.Title + "<br />"); Console.WriteLine(p.Summary + "<br />"); Console.WriteLine("Number of entries: " + p.CountHint + "<br />"); Feed<Video> list = request.GetPlaylist(p); foreach (Video v in list.Entries) { Console.WriteLine("Video ID: " + v.VideoId + "<br />"); Console.WriteLine("ViewCount: " + v.ViewCount + "<br />"); Console.WriteLine("Summary: " + v.Summary + "<br />"); } }
Feb 15, 2010 11:37 PM|qwe123kids|LINK
http://www.codeproject.com/KB/aspnet/YouTube.aspx http://www.codeproject.com/KB/web-image/YouTube_API.aspx OR Read the documents care full un wil get the solution there
21 Points
128 Posts
Feb 17, 2010 07:19 PM|Boot_Dev|LINK
Were you able to find a solution to this yet? I'm recieving the same error.
Thanks!
Feb 20, 2010 04:33 AM|Beecraq|LINK
no not yet, another option is to use favorite playlist, that seems to work.
Feb 21, 2010 05:32 AM|Beecraq|LINK
this seems to work:
Feed<PlayListMember> list = request.GetPlaylist(p); foreach (PlayListMember v in list.Entries) { ....... }
Member
4 Points
28 Posts
retrieving video feed of youtube playlist
Feb 14, 2010 06:19 AM|Beecraq|LINK
Hi,
I tried using the Youtube APIs and Tools to retrieve video feed of my playlist on youtube but was not successful, has anyone tried this to show me an example. I was trying to retrieve a playlist and feed it on my website. Thanks.
All-Star
32861 Points
7877 Posts
Re: retrieving video feed of youtube playlist
Feb 15, 2010 12:54 AM|qwe123kids|LINK
Hi,
http://youtube.codeplex.com/
http://www.dotneat.net/2007/12/20/QueryingYoutubeAPIUsingC.aspx
have seen th above link
Avinash Tiwari
Remember to click “Mark as Answer” on the post, if it helps you.
Member
4 Points
28 Posts
Re: retrieving video feed of youtube playlist
Feb 15, 2010 04:01 PM|Beecraq|LINK
here is the code I tried if its any help, and the error I got:
thanx
All-Star
32861 Points
7877 Posts
Re: retrieving video feed of youtube playlist
Feb 15, 2010 11:37 PM|qwe123kids|LINK
http://www.codeproject.com/KB/aspnet/YouTube.aspx
http://www.codeproject.com/KB/web-image/YouTube_API.aspx
OR
Read the documents care full un wil get the solution there
Avinash Tiwari
Remember to click “Mark as Answer” on the post, if it helps you.
Member
21 Points
128 Posts
Re: retrieving video feed of youtube playlist
Feb 17, 2010 07:19 PM|Boot_Dev|LINK
Were you able to find a solution to this yet? I'm recieving the same error.
Thanks!
Member
4 Points
28 Posts
Re: retrieving video feed of youtube playlist
Feb 20, 2010 04:33 AM|Beecraq|LINK
no not yet, another option is to use favorite playlist, that seems to work.
Member
4 Points
28 Posts
Re: retrieving video feed of youtube playlist
Feb 21, 2010 05:32 AM|Beecraq|LINK
this seems to work: