哇那里!此页面没有请求令牌

时间:2013-02-27 05:46:53

标签: php twitter

当我尝试使用php验证twitter时出现错误'Whoa there!

此页面没有请求令牌。这是我们要求使用您的Twitter帐户的应用程序所需的特殊密钥。请返回发送给您的网站或应用程序,然后重试;这可能只是一个错误。 ”。

我尝试了各种代码但仍然出错。如何解决?

以下是我的Twitter身份验证链接。

 protected $requestTokenUrl = 'https://api.twitter.com/oauth/request_token';
  protected $accessTokenUrl = 'https://api.twitter.com/oauth/access_token';
  protected $authorizeUrl = 'https://api.twitter.com/oauth/authorize';
  protected $apiUrl = 'https://api.twitter.com/1/';

请帮忙.. 提前谢谢......

3 个答案:

答案 0 :(得分:1)

您可能正在使用OAuth2,而Twitter则使用OAuth

答案 1 :(得分:0)

在我勾选“启用回拨锁定”后,我才发生这种情况。在应用程序设置中

取消勾选它使消息消失:)

enter image description here

答案 2 :(得分:0)

当我使用的网址出现问题时,我得到了这个。如果您的网址也是错误的,您将收到此错误。在撰写本文时,网址格式为

https://twitter.com/oauth/authorize?oauth_token=authTokenHere

只需提及这一点,因为这也是原因之一。您的问题也可能是由其他原因引起的。