How to get video status with C# or VB.NET Youtube API?
I don't get video status (fail,processing,rejected etc..) How to fix this
problem? Thanks for help!!
settings = new YouTubeRequestSettings("app", devkey, "accountname",
"password");
request = new YouTubeRequest(settings);
string feedUrl = "http://gdata.youtube.com/feeds/api/videos/xxxxxx";
videoFeed = request.Get<Video>(new Uri(feedUrl));
foreach (Video entry in videoFeed.Entries)
{
listBox1.Items.Add("Status:" + entry.Status.Value);
}
No comments:
Post a Comment