Twitter 身份验证“无法验证您的身份。”错误
嘿,我正在创建一个新网站,您可以使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过使用Zend_Service_Twitter?一位同事已将其用于一些以 PHP 为中心的 Twitter 合约,并且没有收到任何投诉。
您问题中的调用将转换为:
如果您尚未从 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:
If you haven't already obtained the access token from Twitter, then use Zend_OAuth.