如何使用NodeJS和Google Drive API v3将文件移至垃圾箱

问题描述 投票:0回答:1

如何使用NodeJS和Google Drive API v3将文件移至垃圾箱。以下几行不起作用:

await drive.files.update({ fileId, trashed: true }); // not working
await drive.files.update({ fileId },  { trashed: true }); // not working
node.js google-drive-api google-api-v3
1个回答
0
投票

我相信您的情况和目标如下。

  • 您想使用带有Node.js的googleapis和Drive API v3将文件移至垃圾箱。
  • [drive可用于使用Drive API的“文件:更新”的方法。

为此,此修改如何?在这种情况下,请将请求正文包含在requestBodyresource中,如下所示。

修改的脚本:

await drive.files.update({ fileId, requestBody: { trashed: true } });

await drive.files.update({ fileId, resource: { trashed: true } });

参考:

© www.soinside.com 2019 - 2024. All rights reserved.