在Twitch APIv5中使用客户端ID请求流信息

时间:2017-08-05 18:28:08

标签: php twitch

如何通过PHP在我的twitch API服务器请求中实现我的客户端ID?

这是我目前的代码:

$clientid="xxxxxxxxx";
function is_channel_live($channel)
{
$request = json_decode( @file_get_contents( 'https://api.twitch.tv/kraken/streams/' . $channel ) );
return ( ! is_null( $request->stream ) ) ? TRUE : FALSE;
}
$chan = "shroud";
if (is_channel_live($chan)==true)
echo "Live!!";

else
echo "Offline..";

我如何在请求中实际实现客户端ID?

也可能会注意到我对twitch API很新。

0 个答案:

没有答案