oAuth2 - 此页面错误没有请求令牌

时间:2013-05-25 11:53:37

标签: oauth-2.0 token twitter-oauth

我是oAuth2的新手,并尝试调整此ActionScript3 oAuth2 library示例来授权Twitter应用程序而不是Google。

// From the example:
var oauth2:OAuth2 = new OAuth2("https://accounts.google.com/o/oauth2/auth", "https://accounts.google.com/o/oauth2/token", LogSetupLevel.ALL);

var grant:IGrantType = new AuthorizationCodeGrant(stageWebView, "INSERT_CLIENT_ID_HERE", "INSERT_CLIENT_SECRET_HERE", "http://www.example.com", "https://www.googleapis.com/auth/userinfo.profile");

我的尝试:

var oauth2:OAuth2 = new OAuth2("https://api.twitter.com/oauth/authorize", "https://api.twitter.com/oauth/request_token", LogSetupLevel.ALL);

var grant:IGrantType = new ImplicitGrant(stageWebView, "Consumer-Key", "Consumer-Secret", "http://www.example.com", "https://api.twitter.com/oauth/access_token");

我遇到了这个错误:

  

“此页面没有请求令牌。这是我们的特殊密钥   需要申请人使用您的Twitter帐户“

为什么没有找到请求令牌?

1 个答案:

答案 0 :(得分:1)

据我所知,twitter使用的是OAuth1.0A而不是OAuth2.0