文件创建成功后如何诊断Google Drive文件上传失败?

问题描述 投票:0回答:0

一个Android应用程序基本上是按照官方文档来做文件上传。

com.google.api.services.drive.model.File fileMetadata = new com.google.api.services.drive.model.File();
...
File fileData = new File(pathLocalFile);
FileContent fileContent = new FileContent("file/binary", fileData);
com.google.api.services.drive.model.File file = googleDriveService.files().create(fileMetadata, fileContent)
                                        .setFields("*")
                                        .execute();

我想强调上面的代码在大多数设备上都能完美运行。但是,在某些 Android 设备上,该文件已在 Google Drive 上正确创建,但未上传任何数据。没有异常被抛出。谁能提供有关如何诊断此问题的提示?

google-drive-api
© www.soinside.com 2019 - 2024. All rights reserved.