在Google Drive App Folder Android上创建文件

时间:2018-07-01 07:23:46

标签: java android android-studio google-drive-android-api google-drive-team-drive

我试图将文件上传到Google Drive应用程序文件夹,但是我被卡住了。 例如,我尝试使用此代码,但出现错误:

    File fileMetadata = new File();
fileMetadata.setName("config.json");
fileMetadata.setParents(Collections.singletonList("appDataFolder"));
java.io.File filePath = new java.io.File("files/config.json");
FileContent mediaContent = new FileContent("application/json", filePath);
File file = driveService.files().create(fileMetadata, mediaContent)
    .setFields("id")
    .execute();
System.out.println("File ID: " + file.getId());

错误:

enter image description here

为什么会出现此错误?

0 个答案:

没有答案