我正在尝试在我们的应用程序中实现 Google Drive 功能并遇到这样的问题:使用此代码
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 Console 中启用了 Drive API,输入了 SHA1 调试指纹,并且应用程序的包名称与在 API 控制台中输入的完全相同。请问有什么想法吗?