0

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 を含めました。何か案は??

4

1 に答える 1