Hi
I have below code to get Videos. I want Tags of that video also.
var youtubeService = new YouTubeService(new BaseClientService.Initializer()
{
ApiKey = "MyApiKey",
ApplicationName = this.GetType().ToString()
});
var searchListRequest = youtubeService.Search.List("snippet");
searchListRequest.Order = Google.Apis.YouTube.v3.SearchResource.ListRequest.OrderEnum.ViewCount;
searchListRequest.Type = "video";
searchListRequest.VideoCategoryId = "10";
// Call the search.list method to retrieve results matching the specified query term.
var searchListResponse = searchListRequest.Execute();
Thanks