Skip to content

Simple C# class to parse a YouTube user's video page for latest videos.

Notifications You must be signed in to change notification settings

nagilum/YouTubeUserVideosParser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 

Repository files navigation

YouTube User Videos Parser

A simple C# class to fetch a list of latest YouTube videos for a user.

var videos = YouTubeUserVideos.GetFromUser("FailArmy");

This will give you a list of the latest videos (50 I believe) from the given user. The metadata will include the thumbnail image URL, code/id for the video, and title.

To include the description, you have to add the second parameter in the GetFromUser function.

var videos = YouTubeUserVideos.GetFromUser("FailArmy", true);

Warning! Including the descriptions will invoke an extra request pr. video, since the description isn't included in the general videos page.

About

Simple C# class to parse a YouTube user's video page for latest videos.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages