如何从Oauth1迁移到Oauth2?

时间:2013-12-05 13:09:46

标签: oauth google-api google-oauth

我一直在关注迁移教程中的步骤:

https://developers.google.com/accounts/docs/OAuth_ref#migration

我发送了一个正确的“身份验证”标题,但我得到的只是:

{ "error" : "invalid_token" }

Oauth令牌有效,我可以很好地从我的应用程序访问GData服务。

这是我的迁移代码(简化):

com.google.gdata.client.authn.oauth.OAuthParameters oauthParameters = new com.google.gdata.client.authn.oauth.OAuthParameters();
com.google.gdata.client.authn.oauth.OAuthHmacSha1Signer signer = new com.google.gdata.client.authn.oauth.OAuthHmacSha1Signer();
oauthParameters.setOAuthConsumerKey(oauthConsumerKey);
oauthParameters.setOAuthConsumerSecret(oauthConsumerSecret);
oauthParameters.setOAuthToken(account.getOAuthToken());
oauthParameters.setOAuthTokenSecret(account.getOAuthTokenSecret());
OAuthHelper oauthHelper = new GoogleOAuthHelper(signer);
String header = authHelper.getAuthorizationHeader("http://www.sharedgroups.com", "POST", oauthParameters);
HTTPRequest request = new HTTPRequest(new URL("https://accounts.google.com/o/oauth2/token"), HTTPMethod.POST);
String clientId = "<myid>.apps.googleusercontent.com";
String clientSecret = "<mysecret>";
String payload = "grant_type=urn%3Aietf%3Aparams%3Aoauth%3Agrant-type%3Amigration%3Aoauth1&client_id="+clientId+"&client_secret="+clientSecret;
request.addHeader(new HTTPHeader("Authorization", header));
request.setPayload(payload.getBytes());
URLFetchService urlFetchService = URLFetchServiceFactory.getURLFetchService();
HTTPResponse response = urlFetchService.fetch(request);
resp.getWriter().println("RESPONSE="+new String(response.getContent()));

1 个答案:

答案 0 :(得分:1)

我们对OAuth1-&gt; OAuth2令牌迁移的验证部分进行了一些更改。您是否介意再次检查迁移流程并使用结果更新此线程?