admin管理员组文章数量:1344979
I need to get root folder id and filter folders which have root folder as their parent folder. Using Nodejs and google drive API v3 . This is my code and how I change this code to get root folderId?
const service = google.drive('v3');
service.files.list({
auth: client2,
fields: 'nextPageToken, files(id, name, webContentLink, webViewLink, mimeType, parents)'
}, (err, res) => {
if (err) {
console.error('The API returned an error.');
throw err;
}
const files = res.data.files;
if (files.length === 0) {
console.log('No files found.');
} else {
console.log('Files Found!');
for (const file of files) {
console.log(`${file.name} (${file.id})`);
}
I need to get root folder id and filter folders which have root folder as their parent folder. Using Nodejs and google drive API v3 . This is my code and how I change this code to get root folderId?
const service = google.drive('v3');
service.files.list({
auth: client2,
fields: 'nextPageToken, files(id, name, webContentLink, webViewLink, mimeType, parents)'
}, (err, res) => {
if (err) {
console.error('The API returned an error.');
throw err;
}
const files = res.data.files;
if (files.length === 0) {
console.log('No files found.');
} else {
console.log('Files Found!');
for (const file of files) {
console.log(`${file.name} (${file.id})`);
}
Share
Improve this question
edited Apr 18, 2018 at 7:17
Linda Lawton - DaImTo
117k39 gold badges224 silver badges499 bronze badges
asked Apr 18, 2018 at 6:08
Samith BasnayakaSamith Basnayaka
1372 silver badges15 bronze badges
0
1 Answer
Reset to default 13The folder id of the root folder is "root". The file.list method has an option parameter called q which is used for searching.
service.files.list({auth: auth,
resource: { parents: [ folderId ] },
q: "'root' in parents",
fields: '*',
spaces: 'drive',
pageToken: pageToken,
}
This code is kind of a guess as i dont have the power to test node on this machine.
本文标签: javascriptGoogle DRIVE API V3Get a root folder ID with nodejsStack Overflow
版权声明:本文标题:javascript - Google DRIVE API V3 - Get a root folder ID with nodejs - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743795217a2540303.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论