如何使用NodeJS和Google Drive API v3将文件移至垃圾箱。以下几行不起作用:
await drive.files.update({ fileId, trashed: true }); // not working
await drive.files.update({ fileId }, { trashed: true }); // not working
我相信您的情况和目标如下。
drive
可用于使用Drive API的“文件:更新”的方法。为此,此修改如何?在这种情况下,请将请求正文包含在requestBody
或resource
中,如下所示。
await drive.files.update({ fileId, requestBody: { trashed: true } });
或
await drive.files.update({ fileId, resource: { trashed: true } });