2

我正在使用 GoogleAuthorizationCodeRequestUrl 来获取代码。

String authorizationUrl = new GoogleAuthorizationCodeRequestUrl(clientId, redirectUrl, scope).build(); 这应该会返回一个代码,我可以使用它来获取 accessToken。但是这个调用只是构建了 url:https://accounts.google.com/o/oauth2/auth?client_id=MyClientId&redirect_uri=urn:ietf:wg:oauth:2.0:oob&response_type=code&scope=https://www.googleapis。 com/auth/内容

我应该使用其他任何方法来获取访问代码吗?谢谢!!

4

1 回答 1

1

为时已晚,但可能对其他人有帮助,您需要将 sendRedirect 发送到您创建的网址

response.sendRedirect(authorizationUrl);
于 2016-08-19T06:51:19.607 回答