我使用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/content
我应该使用其他方法来获取访问码吗?谢谢! !
太晚了,但它可能对其他人有帮助,你需要做一个sendRedirect到你创建的url
response.sendRedirect(authorizationUrl);