gpt4 book ai didi

javascript - 如何通过 Google API 创建 Google 文档

转载 作者:行者123 更新时间:2023-12-03 11:22:44 24 4
gpt4 key购买 nike

我正在开发一个基于 Google App Engine Python 的 Web 应用程序。当当前登录用户按下按钮时,我需要在当前登录用户的 Google 云端硬盘帐户的文件夹中自动创建一个新文档。我正在尝试找出要利用的库。我现在使用 Python 客户端库 3.0 来管理用户的日历,但我不知道如何使用它们来创建新文档并设置一些初始内容。如果我可以使用一些 Javascript 库,那就太好了,但我对在互联网上找到的许多不同的(有时已废弃的)文档(即 Google Apps 脚本、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');

您可以引用this API 文档链接。

关于javascript - 如何通过 Google API 创建 Google 文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27035972/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com