I have uploaded video content with Youtube API async methods but I have a problem about uploaded video status.I want to change my all video status as Private and I have done it second again update :S Here is my code but I can't understand , Do you have any ideas ?
YouTubeRequestSettings ys = new YouTubeRequestSettings(YoutubeConstants.ApplicationName, this.developerKey, this.youtubeAccount, this.password);
YouTubeRequest ytr = new YouTubeRequest(ys);
Google.YouTube.Video video = ytr.Retrieve<Google.YouTube.Video>(videoEntryUrl);
video.Private = true;
video.YouTubeEntry.AccessControls.Add(new YtAccessControl("list", "denied"));
video = SetAcessControl(v, "list", "denied");
video = SetAcessControl(video, "comment", "denied");
video = SetAcessControl(video, "commentVote", "denied");
video = SetAcessControl(video, "videoRespond", "denied");
video = SetAcessControl(video, "rate", "denied");
Google.YouTube.Video updatedVideo = (ytr).Update(video);
video.Private = true;
updatedVideo = (ytr).Update(video);
Do you have any Ideas why update Youtube video status in second time not only first time ?
Thanks ...
