Youtube Gaming直播状态

时间:2016-02-04 12:44:59

标签: youtube-api youtube-livestreaming-api

我是如何获得Youtube Gaming直播状态的,如果它是直播还是离线? 然后将其设为文本,例如频道离线或频道在线。它不是我的频道。

1 个答案:

答案 0 :(得分:0)

如果您想要检索其他频道广播的信息,您必须使用Search/list端点。

part -> snippet

channelId - > [channelId of the channel/user with the live event]

eventType -> live

type -> video(将eventType设置为live时需要)

HTTP GET https://www.googleapis.com/youtube/v3/search?part=snippet&channelId={channelId}&eventType=live&type=video&key={YOUR_API_KEY}

如果用户当前没有流式传输,则GET请求将返回零项。

相关问题