我正在使用GoogleAuthorizationCodeRequestUrl来获取代码。
String authorizationUrl = new GoogleAuthorizationCodeRequestUrl(clientId,redirectUrl,scope).build(); 这应该返回一个我可以用来获取accessToken的代码。但是这个调用只是建立了网址: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
我应该使用其他方法来获取访问代码吗? 谢谢!
答案 0 :(得分:0)
太晚但是对其他人有帮助,你需要将sendRedirect设为你创建的网址
response.sendRedirect(authorizationUrl);