Google ドライブにアクセスできません。Google API コンソールで API KEY を作成し、Google Drive API と SDK を有効にしました。その API KEY をコードのどこに設定すればよいですか?
ドライブビルダーにはメソッドがありませんsetJsonHttpRequestInitializer
。KEY はどこで設定できますか?代替手段はありますか?
private Drive getDriveService(String token) {
HttpTransport ht = AndroidHttp.newCompatibleTransport();
JacksonFactory jsonFactory = new JacksonFactory();
Credential credentials = new GoogleCredential().setAccessToken(token);
Drive.Builder b = new Drive.Builder(ht, jsonFactory, credentials);
b.setHttpRequestInitializer(credentials);
return b.build();
}
取得:
com.google.api.client.googleapis.json.GoogleJsonResponseException: 403 Forbidden
{
"code" : 403,
"errors" : [ {
"domain" : "usageLimits",
"message" : "Access Not Configured",
"reason" : "accessNotConfigured"
} ],
"message" : "Access Not Configured"
}