标签: api youtube stream live
我正在尝试使用Youtube Data API来获取当前与游戏相关的实时流列表,但我找不到符合我需要的任何端点,并返回每个频道的观众数量。
你们有什么想法我能做到这一点吗?
感谢。
答案 0 :(得分:3)
游戏直播列表 https://www.googleapis.com/youtube/v3/search?part=snippet&eventType=live&type=video&videoCategoryId=20®ionCode=US&maxResults=50&key={YOUR_API_KEY_HERE}
videoCategoryId = 20是“游戏”
获取直播详细信息(如观看者编号): https://www.googleapis.com/youtube/v3/videos?part=snippet%2CliveStreamingDetails&id={VIDEO_ID_HERE}&fields=items(id%2Csnippet(title%2CliveBroadcastContent)%2CliveStreamingDetails%2FconcurrentViewers)&key={YOUR_API_KEY_HERE}
使用适当的值替换{}中这些链接的部分。
{}