我正在寻找一种使用 JavaScript 在 google drive sdk 上查找用户共享文件列表的方法。
重要提示:我不是在寻找“与我共享”的文件列表。
我现在列出了“与我共享”的文件,我想知道是否有办法更改“sharedWithMe”查询字符串参数,以列出我共享的文件?
// Load the API and make an API call. Display the results on the screen.
function makeApiCall() {
// Load drive
gapi.client.load('drive', 'v2', function() {
// Request files (q is query string, to filter files)
var request = gapi.client.drive.files.list ( {'maxResults': 200,'q':"trashed=false and sharedWithMe"} );
任何帮助都会很棒,谢谢。
戴夫