(为清楚起见,这篇文章与使用Python的Documents List API上的Google Drive API和Google App Engine之间的差异
通过[现已弃用的]文档列表API,我可以通过导出为HTML,修改HTML然后重新上传来编辑Google文档,作为新文档或作为原始文档的修改。这对于从模板生成PDF文档等内容非常有用。我一直在尝试使用新的Drive API(V2)复制此功能,但似乎无法。
想出了这个......
http = # authenticated http client
drive_service = build('drive', 'v2', http=http)
# get the file ...
file = drive_service.files().get(fileId=FILE_ID).execute()
# download the html ...
url = file['exportLinks']['text/html']
response, content = http.request(url)
# edit html
html = content.replace('foo', 'bar')
# create new file with modified html ...
body = {'title':'Modified Doc',
'description':'Some description',
'mimeType':'text/html'}
media_body = MediaIoBaseUpload(StringIO.StringIO(html), 'text/html', resumable=False)
drive_service.files().insert(body=body, media_body=media_body)
上述代码将html文件作为文件上传到Google云端硬盘,而不是将HTML呈现为Google文档。很公平,这是有道理的。但是我如何将其渲染为Google Doc,因为我可以使用Documents List API?
另一件事 - 如果我设置resumable = True它会在App Engine上抛出以下错误 - '_StreamSlice'没有len()。无法弄清楚如何获得resumable = True才能工作?
最后一件事 - sample code in the docs使用MediaInMemoryUpload对象,但if you look at the source现在不推荐使用它,而支持MediaIoBaseUpload。应该更新示例代码吗?!
答案 0 :(得分:7)
我怀疑问题是转换的默认值已从true更改为false。您必须在上载时显式设置convert = true。见https://developers.google.com/drive/v2/reference/files/insert