gpt4 book ai didi

google-api - 谷歌文档 API : download inline object

转载 作者:行者123 更新时间:2023-12-04 12:03:29 25 4
gpt4 key购买 nike

我正在创建一个 Google Doc to HTML 转换器,我想使用 Doc Api而不是使用 Drive Api 将其导出为 HTML:

$service = new Google_Service_Docs($client);
$request = $service->documents->get($docId);

$elements = $request->getBody()->getContent();

$elements 是 Google_Service_Docs_StructuralElement 的数组

循环遍历段落 > 元素,如果有内联对象,则使用 Google_Service_Docs_InlineObjectElement 设置 inlineObjectElement 属性

问题是:如何获取 Google_Service_Docs_InlineObjectElement 的内容以将其保存为文件?
我们在这个对象中只有一个 inlineObjectId ......

最佳答案

我能够在 this blog post 上找到解决方案.
基本上,所有内联元素都位于:

$inlineObjects = $request->getInlineObjects();
顺便提一句。我建议将“$request”重命名为“$document”
现在,有了 内联对象 ID 你可以得到你想要的特定对象 - 在那里,你会得到一个 contentUri 其中包含二进制内容。
这里是 $inlineObjects 的截图内容,这是一个关联数组。关键是 inlineObjectId:
Screenshot of the Google_Service_Docs_InlineObject in var dumper

关于google-api - 谷歌文档 API : download inline object,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54680423/

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