无法打开流:HTTP请求失败! HTTP / 1.0 400错误请求 - 尝试获取YouTube API数据

时间:2014-10-19 14:51:42

标签: php api youtube youtube-api

我最近一直试图通过YouTube的分析API获取一些数据。我在一个域上遇到问题,但它在另一个域上没有任何错误。

除了表单操作之外,它使用了完全相同的代码=""这是从index.php改为api.php - 我只是无法弄清楚为什么它在一个域上工作而在另一个域上没有?!

确切的错误是:

警告:file_get_contents(http://gdata.youtube.com/feeds/api/users/):无法打开流:HTTP请求失败!第22行/customers/2/c/9/catalyst.yt/httpd.www/api.php中的HTTP / 1.0 400错误请求警告:file_get_contents(http://gdata.youtube.com/feeds/api/users/?alt=json):无法打开流:HTTP请求失败!第24行的/comersomers/2/c/9/catalyst.yt/httpd.www/api.php中的HTTP / 1.0 400错误请求

这是代码

<html>
<head>
    <title>Get YouTube Channel Data</title>
</head>
<body>

<form action="api.php" method="GET">
    <input type="text" name="username" />
    <input type="submit" value="Submit!" />
</form>

</body>

</html>

<?php 

$channelUser = $_GET['username'];



$data = file_get_contents('http://gdata.youtube.com/feeds/api/users/' . $channelUser);

$data = file_get_contents('http://gdata.youtube.com/feeds/api/users/' . $channelUser . '?alt=json');
$data = json_decode($data, true);
$stats_data = $data['entry']['yt$statistics'];
$img_data = $data['entry']['media$thumbnail'];

echo $channelUser . ' Has <strong>'.$stats_data['subscriberCount'].'</strong> Subscribers.<br />';
echo $channelUser . ' Has <strong>'.$stats_data['totalUploadViews'].'</strong> Total Views.<br />';
echo 'Logo: <br /><img src="' .$img_data["url"].'" /><br />';


?>

1 个答案:

答案 0 :(得分:1)

修改

以下是使用cURL的v3 api请求的示例。因此,您需要在developer console中创建一个api密钥。如果您还没有服务器密钥,请创建一个新项目,选择该项目,然后单击“凭据”&#39; (在&#39; APIs&amp; auth) - &gt;创建新密钥 - &gt;服务器密钥 - &gt;创建(如果您在本地计算机上开发,则不必输入任何内容)。

然后用API密钥替换代码中的占位符。

$api_key = 'YOUR_API_KEY';
$url = 'https://www.googleapis.com/youtube/v3/channels?part=snippet,statistics&key=' . $api_key . '&forUsername=' . $_GET['username'];

// initializes the request
$curl = curl_init();
// sets the url
curl_setopt($curl, CURLOPT_URL, $url);

// enables that curl_exec() returns content instead of status code
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);

// allows redirects
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);

// checks if a secure site has been requested
if(preg_match('/^https:\/\//', $url)){
    // if so, verification is disabled
    curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
}
// performs the actual request
$data = curl_exec($curl);
// destructs the request
curl_close($curl);

// this line converts the json string which is returned into a php object
$data = json_decode($data);

// you can access your stats like this:
var_dump($data->items[0]->statistics->subscriberCount);
var_dump($data->items[0]->statistics->videoCount);
var_dump($data->items[0]->snippet->thumbnails->default->url);

请注意,不建议在最终产品中禁用ssl验证,现在它更容易。之后,您应该正确验证证书。(在您提出要求之前,我从未这样做过)

我希望这适合你。


原始答案

看起来在php.ini中禁用了allow_url_fopen。如果您的php.ini中有一行allow_url_fopen = Off,请将其更改为allow_url_fopen = On

但我更喜欢使用cURL:

$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, 'http://gdata.youtube.com/feeds/api/users/' . $channelUser);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);
$data = curl_exec($curl);
curl_close($curl);

还必须启用curl扩展名:extension = php_curl.dll(可能有一个类似的行以分号开头,您可以删除它)。但是在大多数配置中,这已经完成了。