如何使用 google 幻灯片 api 替换所有超链接?

How to replace all hyperlinks using google slides api?

参考Google幻灯片api官方文档找不到替换所有链接的方法。

我找到了一个解决方法:

我可以替换文本、图片但不能替换链接。

非常感谢任何帮助!

超链接 URL 由 TextStylelink 字段表示。

这个Link contains the field url, which refers to the URL this is pointing to. You should update this field when calling UpdateTextStyleRequest.

例如,您的请求正文可能类似于:

{
  "requests": [
    {
      "updateTextStyle": {
        "objectId": "your_object_id",
        "style": {
          "link": {
            "url": "your_new_url"
          }
        }        
      }
    }
  ]
}