I have an asp.net application where users can upload videos to youtube, view the uploaded videos and vote for a video if they wish. All the above except the voting part is working.
I had a look at the sample code in the youtube api dot net developers guide: video.Rating = 5; request.Insert(video.RatingsUri, video);
but keep on getting an error saying I need to authenticate. If i authenticate its works fine.
My question is my do I need to authenticate when I add a rating(like/dislike) for a video through the api but if you go to www.youtube.com you can rate(like/dislike) a video without logging into your personal youtube account first?
What do I need to do to add a rating to a video without authenticating first?
Thanks