gpt4 book ai didi

java - 如何在 Google Drive api v3 中使用 appProperties?

转载 作者:行者123 更新时间:2023-11-30 03:05:22 24 4
gpt4 key购买 nike

如何在 Java 中使用 Google Drive v3 设置文件的应用程序属性?

引用文献说:“files.update with {'appProperties':{'key':'value'}}”,但我不明白如何将其应用到我的java代码中。

我尝试过类似的事情

file = service.files().create(body).setFields("id").execute();
Map<String, String> properties = new HashMap<>();
properties.put(DEVICE_ID_KEY, deviceId);
file.setAppProperties(properties);
service.files().update(file.getId(), file).setFields("appProperties").execute();

但随后我收到一个错误:“资源主体包含不可直接写入的字段。”

并获取数据:

File fileProperty = service.files().get(sFileId).setFields("appProperties").execute();

那么如何设置和获取文件的属性呢?谢谢! :)

编辑我试过了

file = service.files().create(body).setFields("id").execute();
Map<String, String> properties = new HashMap<>();
properties.put(DEVICE_ID_KEY, deviceId);
file.setAppProperties(properties);
service.files().update(file.getId(), file).execute();

但我仍然收到相同的错误消息。

最佳答案

避免在 v3 上出现此错误

"The resource body includes fields which are not directly writable."

调用update时,您需要创建一个包含新更改的空File并将其传递给update函数。

我将这篇笔记和其他笔记写为 v3 Migration Guide here .

关于java - 如何在 Google Drive api v3 中使用 appProperties?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34931936/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com