How I can disable comments/rate in video using Visual Basic .NET ?
Basically, how can I set the yt:accessControl element?
How make this request in VB .NET https://code.google.com/intl/pl/apis/youtube/2.0/developers_guide_protocol_updating_and_deleting_videos.html#Updating_Video_Entry
You will have to update the information via an HTTP PUT, specifically, using the video’s id.
Here is an example of an HTTP PUT (taken from the second link above) which shows what the request to update a video would look like:
Note the multiple
yt:accessControlelements at the end indicating the permissions of the video being set.Also note that you can set these permissions when uploading the video as well.