Java Google Calendar API を使用してカレンダーに接続しようとしています。Java アプリケーションはサービス アカウントを使用します。
私は次のコードを持っています:
java.io.File licenseFile = new java.io.File("39790cb51b361f51cab6940d165c6cda4dc60177-privatekey.p12");
GoogleCredential credential = new GoogleCredential.Builder()
.setTransport(HTTP_TRANSPORT)
.setJsonFactory(JSON_FACTORY)
.setServiceAccountId("xxx@developer.gserviceaccount.com")
.setServiceAccountUser(EMAIL_ADRESS)
.setServiceAccountScopes(CalendarScopes.CALENDAR)
.setServiceAccountPrivateKeyFromP12File(licenseFile)
.build();
client = new com.google.api.services.calendar.Calendar.Builder(
HTTP_TRANSPORT, JSON_FACTORY, credential)
.setApplicationName("Google Calendar Sync").build();
Calendar calendar = client.calendars().get(EMAIL_ADRESS).execute();
最後の行で、次のメッセージとともに IOException が発生します。
ex = (com.google.api.client.auth.oauth2.TokenResponseException) com.google.api.client.auth.oauth2.TokenResponseException: 400 Bad Request { "エラー": "access_denied" }
GoogleCredential オブジェクトの値を再確認しましたが、正しい値です。また、ドメイン コンソールにhttps://www.google.com/calendar/feeds/、http://www.google.com/calendar/feeds/をアプリケーション ID としてクライアントとして追加し、サード パーティのアプリケーション アクセスを承認しました。
私は一歩を忘れていますか?