gpt4 book ai didi

google-api - 如何在 Google Docs 中使用(或不使用)kix anchor 匹配图像上的评论

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

可以检索打开的 Google Docs 文档的元素,从

DocumentApp.openById(doc_id, folder_id)

但是文档上的评论是通过 Drive API 检索的,使用 Comments.list

在具有 2 条评论的文档上运行此程序:一个在图像上,一个在段落中的一个单词上显示,虽然文本锚定的评论可以,但图像不会返回 context入口:
 "content": "test comment on text",
"deleted": false,
"status": "open",
"context": {
"type": "text/html",
"value": "some text the comment is placed on"
},
"anchor": "kix.xxxxxxxxxxx1",
 "content": "test comment on an image",
"deleted": false,
"status": "open",
"anchor": "kix.xxxxxxxxxxx2",

在哪里 xxxxxxxxxxx1/ xxxxxxxxxxx2是唯一的 anchor ID 后缀, kix Google 的“专有”锚定前缀/ editor系统(正如 Steven Bazyl 在“ the video”开发人员指南页面上的 Managing comments and discussions 中描述的那样)。

"The anchor basically tells us where in the document this comment applies to. Because this is our format [at Google] we do have a proprietary anchoring scheme, which does make it difficult — or rather, impossible — for you to curatecreate? comments that are anchored to text in our document formats... but if it's a document format that you control, or if it's something where uh.. there are ways to locate it in an interchangeable way, you can put anchors in there that your app can position correctly, and potentially that other apps could read and position correctly as well."



如果我看不到评论所在的元素,是否尝试将图像源 URL 存储在相应图像的评论中注定失败? (上下文:制作 .gdoc-to-.md converter )

如果是这样,将评论与图像匹配的唯一方法可能是检索所有上下文无字段评论并假设每个图像都被评论?
  • GitHub 没有将 Google Apps Script 列为一种语言(大概是因为它非常基于 Javascript)。是否有我可以查看的自定义评论锚定系统的开源示例?
  • 我实际上不相信使用当前的 API 可以实现这样的锚定系统。而 anchorComments.list 提供方法, Comments.insert 只允许 fileId , content , context.typecontext.value :这里不可能有唯一的锚定 ID。
  • 相关尝试:Creating anchored comments programmatically in Google Docs
  • 如果我要使用 Drive 评论 SDK 写一些东西(正如 Steven 建议的那样),有什么方法可以覆盖内置的 Google Docs 评论(例如 Ctrl/Cmd + M 或自定义按钮对带有GAS 可访问 context ) ?
  • 最佳答案

    简单的答案是您无法可靠地匹配。 anchor 根本没有在 Document API 的任何地方公开。如果它们被公开,我希望它们显示为 NamedRange 或 Bookmark 条目,但它们都不会出现由评论 anchor 填充。

    关于google-api - 如何在 Google Docs 中使用(或不使用)kix anchor 匹配图像上的评论,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29050342/

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