73

我正在尝试通过 Gmails OAuth 2.0 访问用户的邮件,我正在通过 Google 的 OAuth 2.0 Playground 解决这个问题

在这里,他们指定我需要将其作为 HTTP 请求发送:

POST /mail/feed/atom/ HTTP/1.1
Host: mail.google.com
Content-length: 0
Content-type: application/json
Authorization: OAuth SomeHugeOAuthaccess_tokenThatIReceivedAsAString

我尝试编写代码来发送此请求,如下所示:

$crl = curl_init();
$header[] = 'Content-length: 0 
Content-type: application/json';

curl_setopt($crl, CURLOPT_HTTPHEADER, $header);
curl_setopt($crl, CURLOPT_POST,       true);
curl_setopt($crl, CURLOPT_POSTFIELDS, urlencode($accesstoken));

$rest = curl_exec($crl);

print_r($rest);

不工作,请帮助。:)

更新:我接受了Jason McCreary的建议,现在我的代码如下所示:

$crl = curl_init();

$headr = array();
$headr[] = 'Content-length: 0';
$headr[] = 'Content-type: application/json';
$headr[] = 'Authorization: OAuth '.$accesstoken;

curl_setopt($crl, CURLOPT_HTTPHEADER,$headr);
curl_setopt($crl, CURLOPT_POST,true);
$rest = curl_exec($crl);

curl_close($crl);

print_r($rest);

但我没有得到任何输出。我认为 cURL 在某处默默地失败了。请帮忙。:)

更新 2: NomikOS的伎俩为我做到了。:) :) :) 谢谢!!

4

3 回答 3

48

您拥有大部分代码……</p>

CURLOPT_HTTPHEADERforcurl_setopt()将每个标头作为一个元素的数组。您有一个带有多个标题的元素。

您还需要将Authorization标头添加到您的$header数组中。

$header = array();
$header[] = 'Content-length: 0';
$header[] = 'Content-type: application/json';
$header[] = 'Authorization: OAuth SomeHugeOAuthaccess_tokenThatIReceivedAsAString';
于 2012-09-08T13:46:55.710 回答
29

@jason-mccreary 是完全正确的。此外,我建议您使用此代码以在出现故障时获取更多信息:

$rest = curl_exec($crl);

if ($rest === false)
{
    // throw new Exception('Curl error: ' . curl_error($crl));
    print_r('Curl error: ' . curl_error($crl));
}

curl_close($crl);
print_r($rest);

编辑 1

要调试,您可以设置CURLOPT_HEADER为 true 以使用firebug::net或类似方法检查 HTTP 响应。

curl_setopt($crl, CURLOPT_HEADER, true);

编辑 2

关于Curl error: SSL certificate problem, verify that the CA cert is OK尝试添加此标头(只是为了调试,在生产环境中您应该保留这些选项true):

curl_setopt($crl, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($crl, CURLOPT_SSL_VERIFYPEER, false);
于 2012-09-08T14:03:31.273 回答
0

使用“内容类型:应用程序/x-www-form-urlencoded”而不是“应用程序/json”

于 2019-02-22T07:29:34.047 回答