使用curl的Twitter API https请求失败,出现错误
问题描述:
我试图从twitter用户时间轴中检索推文,指定其screen_name和计数与请求URL。使用curl的Twitter API https请求失败,出现错误
我想,我已经提供了所需的值,产生的所有的Twitter https://dev.twitter.com/oauth/overview/authorizing-requests页
继正好提到的必填字段是我的脚本:
$param_string = 'oauth_consumer_key='.$consumer_key.
'&oauth_nonce='.$nonce.
'&oauth_signature_method=HMAC-SHA1'.
'&oauth_timestamp='.$timestamp.
'&oauth_token='.$token.
'&oauth_version='.$version.
'&screen_name='.rawurlencode($screen_name).
'&count='.$count;
$base_string = 'POST&'.rawurlencode($url).'&'.rawurlencode($param_string);
$signing_key = rawurlencode($consumer_secret)."&".rawurlencode($token_secret);
$signature = rawurlencode(base64_encode(hash_hmac('sha1', $base_string, $signing_key)));
$auth = 'OAuth oauth_consumer_key="'.rawurlencode($consumer_key).'",'.
'oauth_nonce="'.rawurlencode($nonce).'",'.
'oauth_signature="'.rawurlencode($signature).'",'.
'oauth_signature_method="HMAC-SHA1",'.
'oauth_timestamp="'.rawurlencode($timestamp).'",'.
'oauth_token="'.rawurlencode($token).'",'.
'oauth_version="1.0"';
我的卷曲请求脚本:
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, True);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_CAINFO, __DIR__."/ca-bundle.crt");
curl_setopt($ch,CURLOPT_CAPATH,__DIR__.'/ca-bundle.crt');
curl_setopt($ch, CURLOPT_HTTPHEADER, array("Authorization: $auth"));
$output = curl_exec($ch);
if(curl_error($ch))
{
echo 'HTTP error:' . curl_error($ch);
}else{
echo "<pre>";
var_dump($output);
}
curl_close($ch);
虽然我执行我的PHP脚本它显示以下错误,而不是鸣叫:
string(64) "{"errors":[{"code":32,"message":"Could not authenticate you."}]}"
请让我知道为什么它不起作用?
答
我遇到过同样的错误,但解决了通过true into hash_hmac函数。可以请更新你hash_hmac功能如下,然后再试:
$signature = rawurlencode(base64_encode(hash_hmac('sha1', $base_string, $signing_key,true)));
感谢您的建议,它的工作对我 – Plycoder
不客气 – 2016-11-06 20:30:34