我正在使用 java 库进行 oauth2 身份验证来访问谷歌电子表格。
我正在使用以下代码进行 OAuth2 身份验证:
credential = new GoogleCredential.Builder().setTransport(HTTP_TRANSPORT)
.setJsonFactory(JSON_FACTORY)
.setServiceAccountId(SERVICE_ACCOUNT_EMAIL)
.setTokenServerEncodedUrl("https://accounts.google.com/o/oauth2/token")
.setServiceAccountScopes("https://www.googleapis.com/auth/drive", "https://spreadsheets.google.com/feeds", "https://docs.google.com/feeds")
.setServiceAccountPrivateKeyFromP12File(new File("xxxxx-privatekey.p12")).build();
获得“凭证”后,使用以下代码读取电子表格:
SpreadsheetService service = new SpreadsheetService(
"MySpreadsheetIntegration");
service.setOAuth2Credentials(credential);
URL SPREADSHEET_FEED_URL = new URL("https://spreadsheets.google.com/feeds/spreadsheets/private/full");
SpreadsheetFeed feed = service.getFeed(SPREADSHEET_FEED_URL, SpreadsheetFeed.class);
System.out.println(feed.getTotalResults());
执行上面的代码给我返回总结果 0。
如果我使用:
service.setUserCredentials("email", "password");
代替 oauth2 身份验证,它给了我正确的结果。不确定 OAuth2 身份验证有什么问题。此外,当我从“凭据”对象打印“访问令牌”时,它会打印一个有效的访问令牌。