2

我正在尝试在 Javascript 中使用 Google Drive API 来获取登录用户可以编辑的文件列表。我该怎么做呢?

我尝试使用文件/列表请求来获取默认情况下获取所有文件列表的文件列表: https ://developers.google.com/drive/v2/reference/files/list

该请求还接受搜索参数: https ://developers.google.com/drive/search-parameters

例如,要搜索用户“test@example.org”可写的文件,请在 writers 中使用“test@example.org”

我需要能够说'[当前用户的电子邮件地址] in writers'或类似的东西才能工作,但我看不到任何以编程方式获取当前用户的电子邮件地址的方法。

4

1 回答 1

0

应该能够通过如下查询来做到这一点:

'user@example.com' in owners or 'user@example.com' in writers

这将返回当前用户拥有的文件或与他们共享的具有编辑权限的文件。

于 2012-09-28T22:07:02.917 回答