我正在尝试阅读 appengine 上的电子表格:
List<String> scopes = Arrays.asList("https://spreadsheets.google.com/feeds");
AppIdentityService appIdentity = AppIdentityServiceFactory.getAppIdentityService();
AppIdentityService.GetAccessTokenResult accessToken = appIdentity.getAccessToken(scopes);
Credential creds = new Credential(BearerToken.authorizationHeaderAccessMethod());
creds.setAccessToken(accessToken.getAccessToken());
SpreadsheetService ss = new SpreadsheetService("DBM4G-demo");
ss.setOAuth2Credentials(creds);
我遇到的问题是 setOAuth2Credentials 不是一个类(至少 eclipse 说它不是,我无法编译)。我在我的项目中包含了 gdata-spreadsheets-3.0.jar。有任何想法吗??