尝试在google drive api中将父级添加到文件时未找到错误

时间:2018-04-16 16:21:21

标签: python google-api

您好我在尝试使用google drive api将文件从一个文件夹移动到另一个文件夹时收到404文件未找到错误。

我使用工作表api创建了一个新工作表,并且响应很好,包含新文件网址和电子表格ID。

现在我将此ID传递给我的google驱动器类。从这里我希望将此文件移动到另一个文件夹(以便继承权限)

ANyway我收到404错误。我已经将它识别为我的函数上的addParents参数,返回404错误。

 service.files().update(fileId=file_id,
                                  addParents=folder_id,
                                  removeParents=previous_parents,
                                  fields='id, parents').execute()

然而,当我使用谷歌尝试它工具时,它可以工作。

https://developers.google.com/drive/v3/reference/files/get#try-it

我可以正确找到该文件夹​​。我在这里做错了吗?提前致谢

0 个答案:

没有答案