1

这些天我被谷歌聊天 API 卡住了,我试图让我的机器人看起来很酷,所以我添加了卡片功能。但是我遇到了这个问题,我不能提及用户。在我的旧机器人中(在添加卡片之前)我有这个 JSON

“文本”:“你好,我的朋友”

我总是得到一个回复​​说

@Theodosis 你好,我的朋友

但现在我切换到卡我不能提及用户现在我有这个 JSON

{
  "cards" : [ {
    "sections" : [ {
      "widgets" : [ {
        "textParagraph" : {
          "text" : "<users/USER_ID> hello there my friend"
        }
      }, {
        "buttons" : [ {
          "textButton" : {
            "onClick" : {
              "openLink" : {
                "url" : "some Method"
              }
            },
            "text" : "this is a button"
          }
        } ]
      } ]
    } ]
  } ],
  "thread" : {
    "name" : "a link here"
  }
}

我的回应是

你好,我的朋友

它完全忽略了这个 <> 里面的所有东西

你好,我的朋友

但我希望这个

@Theodosis 你好,我的朋友

而且我似乎在互联网上找不到任何解决方案

4

0 回答 0