YouTube API v3无效

时间:2018-03-05 15:15:26

标签: php json youtube-api youtube-data-api

我正在开发一个网页,我对YouTube API有一个小问题。我想获取任何YouTube视频的所有信息,但我无法获取数据。我有以下PHP代码向服务器发出请求:

这是我的代码:

$video_get_contents = file_get_contents('https://www.googleapis.com/youtube/v3/videos?part=snippet&id=J643lwa-BlM&key=AIzaSyATfzheNPybhDYRIgLwQw__rjE8XddZP8s');
$video_data = json_decode($video_get_contents);
$video_data_title = $video_data->items[0]->snippet->title;
echo $video_data_title;

当我运行前面的代码时,我什么都没得到,我不知道为什么。如果我访问代码中指定的URL,则会正确生成JSON代码。

执行我的代码时出现以下错误:

Warning: file_get_contents(): SSL operation failed with code 1. OpenSSL Error messages: error:14090086:SSL routines:ssl3_get_server_certificate:certificate verify failed in C:\xampp\htdocs\beta.php on line 4
Warning: file_get_contents(): Failed to enable crypto in C:\xampp\htdocs\beta.php on line 4
Warning: file_get_contents(https://www.googleapis.com/youtube/v3/videos?part=snippet&id=J643lwa-BlM&key=AIzaSyATfzheNPybhDYRIgLwQw__rjE8XddZP8s): failed to open stream: operation failed in C:\xampp\htdocs\beta.php on line 4

你能告诉我PHP代码是否正确吗?

1 个答案:

答案 0 :(得分:0)

您无法使用file_get_contents访问https网址, 但是对于youtube API,您可以使用https://developers.google.com/youtube/v3/code_samples/php中的示例访问它 如果您仍想访问网址中的json,这里有一个类似的问题,关于如何使用文件获取内容访问https file_get_contents(): SSL operation failed with code 1. And more