我当时使用YouTube search API通过频道ID检索实况视频,但是最近,API开始返回空响应。
例如,我从https://www.googleapis.com/youtube/v3/search?part=snippet&type=video&eventType=live&key={YOUTUBE_KEY}&channelId=UCPde4guD9yFBRzkxk2PatoA
中检索,该视频应返回channelID = UCPde4guD9yFBRzkxk2PatoA
中的所有实时视频。该频道有24/7全天直播,但我得到的回复是:
{
"kind": "youtube#searchListResponse",
"etag": "\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM/-f6JA5_OcXz2RWuH1mpAA2_9mM8\"",
"regionCode": "US",
"pageInfo": {
"totalResults": 0,
"resultsPerPage": 5
},
"items": []
}
正如我之前提到的,这个请求直到最近都在检索数据。我无法在YouTube API文档上找到任何更改,所以我想知道是否有人对更改有任何想法,或者是否可以采用其他方法按频道ID提取实时视频。
答案 0 :(得分:2)
这不是一个答案,但似乎端点未返回任何包含实况的最新视频。据我所知,它不会返回过去24小时内发布的任何内容。
在Google支持上发现了一个未解决的问题 https://support.google.com/youtube/thread/14611425?hl=en
答案 1 :(得分:0)
相反,您可以加载“ 上传”播放列表, 检查https://stackoverflow.com/a/27872244/2154075
答案 2 :(得分:0)
尝试此代码
async static Task<IEnumerable<YouTubeVideo>> GetVideosList(Configurations configurations, string searchText = "", int maxResult = 20)
{
List<YouTubeVideo> videos = new List<YouTubeVideo>();
using (var youtubeService = new YouTubeService(new BaseClientService.Initializer()
{
ApiKey = configurations.ApiKey
}))
{
var searchListRequest = youtubeService.Search.List("snippet");
searchListRequest.Q = searchText;
searchListRequest.MaxResults = maxResult;
searchListRequest.ChannelId = configurations.ChannelId;
searchListRequest.Type = "video";
searchListRequest.Order = SearchResource.ListRequest.OrderEnum.Date;// Relevance;
var searchListResponse = await searchListRequest.ExecuteAsync();
foreach (var responseVideo in searchListResponse.Items)
{
videos.Add(new YouTubeVideo()
{
Id = responseVideo.Id.VideoId,
Description = responseVideo.Snippet.Description,
Title = responseVideo.Snippet.Title,
Picture = GetMainImg(responseVideo.Snippet.Thumbnails),
Thumbnail = GetThumbnailImg(responseVideo.Snippet.Thumbnails)
});
}
return videos;
}
}
答案 3 :(得分:0)
从8/2020开始,API进行了一些更改,您需要添加&type = video或将其添加到发布请求中,否则在某些情况下,您会从端点得到空的或随机的响应
对于较旧的频道,您可能会得到正确的响应,这似乎是API中的错误