Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 ...

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.