查询Dropbox API以按元数据搜索文件

时间:2019-04-03 23:00:17

标签: dropbox dropbox-api

我需要通过元数据上特定的“标记”在Dropbox图像文件中搜索该文件。

例如,我有猫的照片,元数据将为

  

catColor,catSize,catName

我可以查询图像以返回所有图片吗

  

catColor =黑色

这可能吗?

1 个答案:

答案 0 :(得分:1)

Dropbox API确实可以通过使用“文件属性”功能来设置文件上的自定义元数据:

https://www.dropbox.com/developers/documentation/http/documentation#file_properties

例如,您首先要使用以下属性定义一个属性模板,例如,带有“ catColor”,“ catSize”和“ catName”字段的

https://www.dropbox.com/developers/documentation/http/documentation#file_properties-templates-add_for_user

然后,您可以使用以下方法将该模板的值添加到特定文件中:

https://www.dropbox.com/developers/documentation/http/documentation#file_properties-properties-add

然后您可以使用以下内容基于这些值搜索文件:

https://www.dropbox.com/developers/documentation/http/documentation#file_properties-properties-search

顺便说一下,这些是指向HTTPS终结点本身的文档的链接,但是我们建议尽可能使用一种官方SDK:

https://www.dropbox.com/developers/documentation

对于HTTPS端点,它们具有相应的本机方法。