如何通过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很新。