我正在使用meltingice's API for TwitPic,当我尝试上传图片时,我收到401错误消息“无法对您进行身份验证(推文被Twitter拒绝)”。
我的标头(从HTTP Request2对象检索)是:
Array
(
[user-agent] => HTTP_Request2/2.0.0 (http://pear.php.net/package/http_request2) PHP/5.2.17
[x-verify-credentials-authorization] => OAuth realm="http://api.twitter.com/", oauth_consumer_key="****************", oauth_signature_method="HMAC-SHA1", oauth_token="#########-******************", oauth_timestamp="1325192643", oauth_nonce="***********", oauth_version="1.0", oauth_signature="****************%3D"
[x-auth-service-provider] => https://api.twitter.com/1/account/verify_credentials.json
[content-type] => multipart/form-data
)
我确保verify_credentials签名正在使用GET,我看不到任何其他问题。
我做错了什么?
谢谢:)
编辑:这是我的源代码。
$venue = $this->Venue->findById($venueId);
$twitterData = json_decode($venue['Venue']['twitter_data']);
$token = $twitterData->token;
$secret = $twitterData->secret;
$this->Twitter->loginTwitterUser($token, $secret);
require_once(WWW_ROOT.'twitpic/TwitPic.php');
$twitpic = new TwitPic('**********', '*******', '*********', $token, $secret);
$result['result'] = $twitpic->upload(array('media'=> '/home/todays/public_html/tsm/app/webroot/files/uploads/LOGOA7V1_10.png', 'message'=> 'test'));
我确信令牌,密码和应用凭据是正确的,因为它们在我的Twitter API中工作没有任何问题。我还仔细检查了Twitpic API密钥。
答案 0 :(得分:2)
检查TwitPic documentation后,我注意到401错误已解释:This method will return a 401 Unauthorized if the OAuth header was not present or could not be verified with Twitter.
您说您确保verify_credentials
签名使用GET而API仅接受POST。也许那是你的问题?
以下是与您正在使用的API相关的示例代码: