我正在使用 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/内容
我应该使用其他任何方法来获取访问代码吗?谢谢!!