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?

Recommended Answers

All 3 Replies

Yay i got it working, but i got another question, if i want to stream the video, not the video itself in the webbrowser element but just the file behind the media player, is there any way i can get the link to the code behind, and then just stream the sound?
cheers
-Jazerix

would be nice if you shared how you got it working with those of us who have not.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.