I have a C# application I wrote that loops thru certain youtubers and retrieves video information from them. All I care about is the videos themselves. I recently ran into a problem where someone either created or updated a playlist and now it's erroring out because it's pulling that in as well. Is there a way anyone knows to skip playlists when querying YouTube? This is how I pull a list of videos for a particular youtuber today.
YouTubeService yt = new YouTubeService(new BaseClientService.Initializer() { ApiKey = YTubeAPIKey });
var searchListRequest = yt.Search.List("snippet");
searchListRequest.MaxResults = YTubeDownloadsPerUser;
searchListRequest.Order = SearchResource.ListRequest.OrderEnum.Date; // grab and order by newest to oldest
searchListRequest.ChannelId = youtubers;