|
Hi,
I'm trying to get comments from youtube using c#.
I have no idea how to do this.
I have done this so far:
Uri videoEntryUrl = new Uri(s);
YouTubeRequestSettings settings = new YouTubeRequestSettings("", "", key);
YouTubeRequest req = new YouTubeRequest(settings);
Video video = req.Retrieve<Video>(videoEntryUrl);
But its giving me an exception at the last line.
Can anyone help me please?
Thnx
|