节点:Google Drive API用于列出使用查询的所有文件



请问如何使用GoogleAPIS库在Google Drive中列出所有使用查询的文件

https://github.com/google/google-api-nodejs-client/

我不知道如何使用这个图书馆!

我不知道我应该把我的查询放在哪里,我已经尝试了下面的代码,但没有得到任何响应。。

测试1:

drive.files.list("mimeType='image/jpg'", function(data){
    //I am getting all the data, the query is not working..
));

测试2:

drive.files.list({
    media: {
        mimeType: 'application/vnd.google-apps.folder'
    }
}, function(err, data){
    //I am getting all the data, the query is not working..
});

测试3:

drive.files.list({
    resource: {
        mimeType: 'application/vnd.google-apps.folder'
    }
}, function(err, data){
    //This returns error not working at all!
});

您可以检查此处提供的drive.files.list函数https://github.com/google/google-api-nodejs-client/blob/master/apis/drive/v2.js#L733并使用以下内容。

var drive = google.drive({ version: 'v2', auth: oauth2Client });
drive.files.list({
   q='mimeType='image/jpg''
 }, callback);

有关列表函数输入参数的更多详细信息,请访问https://developers.google.com/drive/v2/reference/files/list

相关内容

  • 没有找到相关文章

最新更新