アプリケーションに Google ドライブ機能を実装しようとしていますが、このような問題に悩まされています: このコードを使用する
try {
// File's binary content
java.io.File fileContent = new java.io.File(Environment.getExternalStorageDirectory() + "/miniclipId.txt");
FileContent mediaContent = new FileContent("text/plain", fileContent);
// File's metadata.
File body = new File();
body.setTitle(fileContent.getName());
body.setMimeType("text/plain");
FileList file = service.files().list().execute();
if (file != null) {
//showToast("Photo uploaded: " + file.getTitle());
//startCameraIntent();
}
} catch (UserRecoverableAuthIOException e) {
startActivityForResult(e.getIntent(), REQUEST_AUTHORIZATION);
} catch (IOException e) {
showToast(e.getMessage());
}
単純なテキスト ファイルを Google ドライブに送信しようとしていますが、運が悪かったため、次の例外が発生しました。
{
"code": 403,
"errors": [
{
"domain": "usageLimits",
"message": "Access Not Configured",
"reason": "accessNotConfigured"
}
],
"message": "Access Not Configured"
}
Google API コンソールで Drive API を有効にし、SHA1 デバッグ フィンガープリントを入力しました。アプリのパッケージ名は、API コンソールで入力したものとまったく同じです。アイデアはありますか?