当通道上线时,可以从youtube获取某种标志吗?
例如,当YouTube频道开始实时广播时,我需要能够获取该信息并使用它。有可能吗?
您可以使用search.list。然后将 eventType
参数设置为 live
。
https://www.googleapis.com/youtube/v3/search?part=snippet&channelId=UCXswCcAMb5bvEUIDEzXFGYg&type=video&eventType=live&key=[API_KEY]
示例代码段:
// Sample php code for search.list
function searchListLiveEvents($service, $part, $params) {
$params = array_filter($params);
$response = $service->search->listSearch(
$part,
$params
);
print_r($response);
}
searchListLiveEvents($service,
'snippet',
array('eventType' => 'live', 'maxResults' => 25, 'q' => 'news', 'type' => 'video'));
希望这会有所帮助。