Google 云端硬盘自定义文件属性限制
有人请解释下面描述的“所有来源总计”的含义吗 https://developers.google.com/drive/api/guides/properties
每个文件最多 100 个自定义属性,来自所有来源的总计。
每个文件最多 30 个公共属性,来自所有源的总计。
任何一个应用程序的每个文件最多有 30 个私有属性。
我的目的是在驱动器文件中存储超过 30 个属性,并且能够与所有共享用户进行搜索。 是否可以使用驱动器属性 api 来做到这一点?
Is someone please explain the meaning of "totaled from all sources" which described at below
https://developers.google.com/drive/api/guides/properties
Maximum of 100 custom properties per file, totaled from all sources.
Maximum of 30 public properties per file, totaled from all sources.
Maximum of 30 private properties per file from any one application.
My intention is to store over 30 properties at drive file and can be able to search with all shared user.
Is it possible to do it with drive properties api?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所有来源总计
指已添加到文件中的任何属性,无论使用哪个应用程序。也就是说,一个文件最多可以有:
properties
)。appProperties
)。也就是说,您可以拥有30 个公共
属性
,加上每个应用30 个appProperties
,总上限100 。当达到这些限制时,API 将返回以下错误消息:
参考:
totaled from all sources
refers to any property that has been added to the file, irrespective of which app was used for this.That is, a file can have up to:
properties
).appProperties
).That is, you can have 30 public
properties
plus 30appProperties
per app, with a total maximum of 100.When those limits are reached, the API returns the following error message:
Reference: