views:

430

answers:

4

Hello,

I am attempting to get the Comments Feed from a video entry using the YouTube API for .NET. I am working on a program in WPF and C#, but can't seem for the life of me to figure out how to retrieve this feed.

I tried looking at the YouTube API Developer's Guide, but it seems to be missing some information about Comment Feeds (near the bottom of the page). Any help or suggestions?

Thanks,
Chris C.

A: 
YouTubeRequest request = ... // Your request object    
Video v = ... // Your video object
Feed<Comment> comments = request.GetComments(v);

comments.entries will contain all the comments for the video v as Comment objects, so you don't need to mess with the feed at all.

Brandon Bodnár
A: 

open YouTube API Developer's Guide in firefox you will see the missing information .

Ranjan Kumar