如何通过mime-types过滤我的google api查询

时间:2018-03-14 17:32:18

标签: google-drive-api

使用https://developers.google.com/drive/v3/reference/files/list,我想使用mime-type查询列出存储在我的google云端硬盘中的文件。

示例通过mimeType ='application / vnd.google-apps.spreadsheet'获取https://www.googleapis.com/drive/v3/files

基于此网站https://developers.google.com/drive/v3/reference/files我在哪里可以找到此选项?

寻找你的建议。

感谢。

1 个答案:

答案 0 :(得分:1)

您正在寻找的端点是这个?此端点以列表形式检索Google云端硬盘中的电子表格文件。

GET https://www.googleapis.com/drive/v3/files?q=mimeType='application/vnd.google-apps.spreadsheet'&key={YOUR_API_KEY}

注意:

参考:

如果我误解了你的问题,我很抱歉。