LiveChatMessages API YouTube returns 空
LiveChatMessages API YouTube returns null
我正在尝试使用 GET 请求从实时聊天中获取消息。
$json_result = file_get_contents("https://www.googleapis.com/youtube/v3/liveChat/messages?liveChatId=$videoId&part=snippet&key=$api_key");
// $videoId и $api_key true, there are no errors.
echo '<pre>';
var_dump(json_decode($json_result));
echo '</pre>';
在我得到 NULL 的答案中,请告诉我错误是什么,或者我可以通过什么方法从 YouTube 广播聊天中获取消息?
也许它对某人有用,通过 cURL
而不是 file_get_contents
解决了问题。
$curl_handle=curl_init();
curl_setopt($curl_handle, CURLOPT_URL,"https://www.googleapis.com/youtube/v3/liveChat/messages?liveChatId=$LiveChatId&part=snippet%2CauthorDetails&maxResults=200&key=$api_key");
curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT, 2);
curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl_handle, CURLOPT_USERAGENT, 'JeezLand API');
$json_results = curl_exec($curl_handle);
curl_close($curl_handle);
$json_decode_results = json_decode($json_results);
foreach($json_decode_results as $json_decode_result){
foreach($json_decode_result as $result){
/* echo '<pre>';
var_dump($result);
echo '</pre>'; */
echo $result->authorDetails->displayName.' -> '.$result->snippet->displayMessage.'<br />';
}
}
特别感谢Gert de Pagter帮忙解决问题
我正在尝试使用 GET 请求从实时聊天中获取消息。
$json_result = file_get_contents("https://www.googleapis.com/youtube/v3/liveChat/messages?liveChatId=$videoId&part=snippet&key=$api_key");
// $videoId и $api_key true, there are no errors.
echo '<pre>';
var_dump(json_decode($json_result));
echo '</pre>';
在我得到 NULL 的答案中,请告诉我错误是什么,或者我可以通过什么方法从 YouTube 广播聊天中获取消息?
也许它对某人有用,通过 cURL
而不是 file_get_contents
解决了问题。
$curl_handle=curl_init();
curl_setopt($curl_handle, CURLOPT_URL,"https://www.googleapis.com/youtube/v3/liveChat/messages?liveChatId=$LiveChatId&part=snippet%2CauthorDetails&maxResults=200&key=$api_key");
curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT, 2);
curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl_handle, CURLOPT_USERAGENT, 'JeezLand API');
$json_results = curl_exec($curl_handle);
curl_close($curl_handle);
$json_decode_results = json_decode($json_results);
foreach($json_decode_results as $json_decode_result){
foreach($json_decode_result as $result){
/* echo '<pre>';
var_dump($result);
echo '</pre>'; */
echo $result->authorDetails->displayName.' -> '.$result->snippet->displayMessage.'<br />';
}
}
特别感谢Gert de Pagter帮忙解决问题