I have implemented You-tube API in asp.net 4.0 application.I can access all other parameter except category.
YouTubeRequestSettings settings = new YouTubeRequestSettings(ApplicationName,developerKey,myUserName,myPassword);
YouTubeRequest request = new YouTubeRequest(settings);
Uri videoEntryUrl = new Uri("http://gdata.youtube.com/feeds/api/videos/" + YouTubeID + "");
Video objVideo = request.Retrieve<Video>(videoEntryUrl);
var desc= objVideo.Description;
var title= objVideo.Title;
var category= ? ;
Sukhjeevan S...
Member
38 Points
51 Posts
How to get category name in Youtube API in ASP.NET4.0 application
Jun 30, 2012 04:03 AM|LINK
I have implemented You-tube API in asp.net 4.0 application.I can access all other parameter except category.
YouTubeRequestSettings settings = new YouTubeRequestSettings(ApplicationName,developerKey,myUserName,myPassword); YouTubeRequest request = new YouTubeRequest(settings); Uri videoEntryUrl = new Uri("http://gdata.youtube.com/feeds/api/videos/" + YouTubeID + ""); Video objVideo = request.Retrieve<Video>(videoEntryUrl); var desc= objVideo.Description; var title= objVideo.Title; var category= ? ;How can i get category value?
Thanks
Sukhjeevan S...
Member
38 Points
51 Posts
Re: How to get category name in Youtube API in ASP.NET4.0 application
Jun 30, 2012 05:53 AM|LINK
OK that's it.
I found solution on my way.