I can not update video meta using .net code. Please find below code:
VideosResource.ListRequest videoResourceList = youtubeService.Videos.List("snippet,status");
videoResourceList.Id = videoId;
videoResourceList.MaxResults = 1;
var searchListResponseNew = await videoResourceList.ExecuteAsync();
if (searchListResponseNew.Items[0] != null)
{
Video video = searchListResponseNew.Items[0];
video.Status.PrivacyStatus = "unlisted";
Video updatedVideo = await youtubeService.Videos.Update(video, "snippet,status").ExecuteAsync();
}
What version of the product are you using? latest API 18
What is your operating system? Windows 7
What is your IDE?
What is the .NET framework version? 4.5
Please provide any additional information below.
Original issue reported on code.google.com by hsnadv...@hsn.net on 4 Aug 2014 at 3:56
Original issue reported on code.google.com by
hsnadv...@hsn.net
on 4 Aug 2014 at 3:56