Hey there
I've been working on a little tool for the last few hours, first i got all my info raw from the site, then i found out there was an api for youtube (stupid me >_<)
but after hours of trying i simply cant get it working
YouTubeRequestSettings settings = new YouTubeRequestSettings("EXAMLE", "test", "DevelopperID");
YouTubeRequest request = new YouTubeRequest(settings);
Uri videoEntryUrl = new Uri("http://gdata.youtube.com/feeds/api/videos/JkCUJdmUarw");
Video video = request.Retrieve<Video>(videoEntryUrl);
MessageBox.Show(video.Author);
Execution of request failed: http://gdata.youtube.com/feeds/api/videos/JkCUJdmUarw
im not sure what it is im doing wrong, but i have no idea of what i should do, ive gone to the point where nothing of what im doing in c# is making sense :P
so please, how can i fix this :P?