【发布时间】:2020-08-26 22:35:00
【问题描述】:
考虑以下使用PyDrive 模块的代码:
from pydrive.auth import GoogleAuth
from pydrive.drive import GoogleDrive
gauth = GoogleAuth()
gauth.LocalWebserverAuth()
drive = GoogleDrive(gauth)
file = drive.CreateFile({'title': 'test.txt'})
file.Upload()
file.SetContentString('hello')
file.Upload()
file.SetContentString('')
file.Upload() # This throws an exception.
创建文件并更改其内容工作正常,直到我尝试通过将内容字符串设置为空字符串来擦除内容。这样做会引发此异常:
pydrive.files.ApiRequestError
<HttpError 400 when requesting
https://www.googleapis.com/upload/drive/v2/files/{LONG_ID}?alt=json&uploadType=resumable
returned "Bad Request">
当我查看我的云端硬盘时,我看到 test.txt 文件已成功创建,其中包含文本 hello。但是我预计它会是空的。
如果我将空字符串更改为任何其他文本,则文件会更改两次而不会出错。虽然这并没有清除内容所以这不是我想要的。
当我在互联网上查找错误时,我在 PyDrive github 上发现了这个 issue 可能与此有关,尽管它仍然没有解决将近一年。
如果您想重现该错误,您必须按照 PyDrive 文档中的 tutorial 创建您自己的使用 Google Drive API 的项目。
如何通过 PyDrive 擦除文件的内容?
【问题讨论】:
标签: python python-3.x google-drive-api pydrive