我正在尝试按照此示例制作 Google OAuth 应用程序。我的应用程序是一个 Web 应用程序,我想替换以下代码:
System.out.println("Paste this url in your browser: " + authorizeUrl);
// Wait for the authorization code
System.out.println("Type the code you received here: ");
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
String authorizationCode = in.readLine();
因为它提示输入我authorizeUrl
在浏览器中点击 URL 后得到的代码。我想删除此提示,并且应用程序本身应该不需要提示code
。