我在使用Google Drive API时遇到了一些麻烦。 我正在尝试使用Java应用从我自己的Google云端硬盘下载电子表格。
根据Google的文档(https://developers.google.com/drive/v3/web/manage-downloads) 可以使用“text / csv”参数以CSV格式下载电子表格。我的问题是,当我试图用CSV下载我的文件时,我正在包装错误,但是以其他格式运行它。
我得到的错误是:
Exception in thread "main" com.google.api.client.googleapis.json.GoogleJsonResponseException: 500 Internal Server Error
{
"code" : 500,
"errors" : [ {
"domain" : "global",
"message" : "Internal Error",
"reason" : "internalError"
} ],
"message" : "Internal Error"
}
at com.google.api.client.googleapis.json.GoogleJsonResponseException.from(GoogleJsonResponseException.java:145)
at com.google.api.client.googleapis.services.json.AbstractGoogleJsonClientRequest.newExceptionOnError(AbstractGoogleJsonClientRequest.java:113)
at com.google.api.client.googleapis.services.json.AbstractGoogleJsonClientRequest.newExceptionOnError(AbstractGoogleJsonClientRequest.java:40)
at com.google.api.client.googleapis.services.AbstractGoogleClientRequest$1.interceptResponse(AbstractGoogleClientRequest.java:321)
at com.google.api.client.http.HttpRequest.execute(HttpRequest.java:1056)
at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.executeUnparsed(AbstractGoogleClientRequest.java:419)
at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.executeUnparsed(AbstractGoogleClientRequest.java:352)
at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.executeAndDownloadTo(AbstractGoogleClientRequest.java:541)
我的代码如下:
public static Drive getDriveService() throws IOException
{
Credential credential = authorize();
return new Drive.Builder(HTTP_TRANSPORT, JSON_FACTORY, credential).setApplicationName(APPLICATION_NAME).build();
}
public static void main(String[] args) throws IOException
{
// Build a new authorized API client service.
Drive service = getDriveService();
// Print the names and IDs for up to 10 files.
FileList result = service.files().list().setPageSize(10).setFields("nextPageToken, files(id, name)").execute();
List<File> files = result.getFiles();
if (files == null || files.size() == 0)
{
System.out.println("No files found.");
}
else
{
for (File file : files)
{
if (file.getName().equals(Settings.DRIVE_FILE_NAME))
{
System.out.printf("%s (%s)\n", file.getName(), file.getId());
String fileId = file.getId();
OutputStream outputStream = new ByteArrayOutputStream();
service.files().export(fileId, "text/csv").executeAndDownloadTo(outputStream);
System.out.println(outputStream);
}
}
}
}
我在哪里做错了什么?
谢谢!
答案 0 :(得分:2)
根据官方Google文档,当您收到&#39; 500:后端错误&#39;处理请求时发生意外错误。
建议的操作是使用&#39; 指数退避&#39;。 指数退避是网络应用程序的标准错误处理策略,其中客户端会在不断增加的时间内定期重试失败的请求。如果大量请求或网络流量过大导致服务器返回错误,则指数退避可能是处理这些错误的好策略。
指数退避可提高带宽使用效率,减少获得成功响应所需的请求数。
有关详细信息,请参阅以下链接:https://developers.google.com/drive/v3/web/handle-errors#500_backend_error 强调文字