- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何在 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/
我没有修改初始 Prop : RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation
我试图让 appProperties 字段与我在 gdrive 上的文件一起返回,但目前无法让它工作。 "googleapis": "^29.0.0" 这是我的范围和字段: scopes: [
本文整理了Java中org.springframework.yarn.boot.app.YarnInfoApplication.appProperties()方法的一些代码示例,展示了YarnInfo
如何在 Java 中使用 Google Drive v3 设置文件的应用程序属性? 引用文献说:“files.update with {'appProperties':{'key':'value'}}
我是一名优秀的程序员,十分优秀!