Twitter 身份验证“无法验证您的身份。”错误

发布于 2024-11-01 05:05:00 字数 462 浏览 2 评论 0原文

嘿,我正在创建一个新网站,您可以使用 Twitter 帐户登录。但是当我测试身份验证时,我收到上述错误。这就是我得到的全部内容:

stdClass Object ( 
[request] => /1/account/verify_credentials.json?oauth_consumer_key=*********&oauth_nonce=*********************&oauth_signature=****************************&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1302636413&oauth_token=&oauth_version=1.0 
[error] => Could not authenticate you. 
) 

如果您知道解决方案,请提供帮助。

Hey, I'm in the process of creating a new website which signs you in with your Twitter account. But when I'm testing the authentication I'm getting the above error. Here's the whole thing I'm getting:

stdClass Object ( 
[request] => /1/account/verify_credentials.json?oauth_consumer_key=*********&oauth_nonce=*********************&oauth_signature=****************************&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1302636413&oauth_token=&oauth_version=1.0 
[error] => Could not authenticate you. 
) 

Please help if you know the solution.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拍不死你 2024-11-08 05:05:00

您是否尝试过使用Zend_Service_Twitter?一位同事已将其用于一些以 PHP 为中心的 Twitter 合约,并且没有收到任何投诉。

您问题中的调用将转换为:

$twitter = new Zend_Service_Twitter(array(
    'username' => 'johndoe',
    'accessToken' => $token
));
$response = $twitter->account->verifyCredentials();

如果您尚未从 Twitter 获取访问令牌,请使用 Zend_OAuth.

Have you tried using Zend_Service_Twitter? A colleague has used it for some PHP-centric Twitter contracts, and hasn't had any complaints.

The call in your question would translate to this:

$twitter = new Zend_Service_Twitter(array(
    'username' => 'johndoe',
    'accessToken' => $token
));
$response = $twitter->account->verifyCredentials();

If you haven't already obtained the access token from Twitter, then use Zend_OAuth.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文