我是新手在Android开发和工作项目中我希望通过谷歌驱动器api下载保存在谷歌驱动器上的我的Excel文件。 但我得到的错误403权限不足。 我被困在这里,但没有发现任何错误。请帮助我,并提前感谢。
OutputStream outputStream = new ByteArrayOutputStream();
HttpTransport transport = AndroidHttp.newCompatibleTransport();
JsonFactory jsonFactory = JacksonFactory.getDefaultInstance();
Drive mService = new com.google.api.services.drive.Drive.Builder(
transport, jsonFactory, mCredential)
.setApplicationName("Drive API Android deldata")
.build();
mService.files().export(fileId, "text/csv")
.executeMediaAndDownloadTo(outputStream);