我正在开发一个基于Python 的 Google App Engine Web 应用程序。当当前登录的用户按下按钮时,我需要在当前登录用户的Google云端硬盘帐户中的文件夹中自动创建一个新文档。我正在尝试找出要利用的库。我现在正在使用 Python 客户端库 3.0 来管理用户的日历,但我看不到如何使用它们来创建新文档并设置一些初始内容。如果我可以使用一些Javascript库,那就太好了,但是我对在互联网上找到的许多不同(有时已废弃)的文档(即Google Apps Script,Google DocsList等)感到有些困惑。
您可以尝试以下代码使用Google App Script创建Google文档,您可以添加文本,html内容和图像。
//Create document in google drive with given name, open the document and returns doc object
doc = DocumentApp.create('digest.doc');
//Get the document body
var body = doc.getBody();
//Insert some text into body
var text = body.editAsText();
text.insertText(0, 'This is sample text...n');
您可以参考此链接以获取 API 文档。