3

我正在使用 Dialogflow 实现聊天机器人,并使用Kommunicate将其集成到网站中。我想在使用后隐藏/禁用快速响应。我该怎么做?

此处给出了如何在我的机器人中显示快速响应的示例:示例

4

1 回答 1

3

Kommunicate 提供了一个名为 的参数hidePostCTA,您需要像true在安装脚本中一样传递它,这样,丰富的消息按钮将在单击时隐藏。请参阅文档以获取更多信息 [文档链接]。

所以你的最终安装脚本应该看起来像

(function(d, m){
    var kommunicateSettings = {
        "appId": "APP_ID",
        "popupWidget": true,
        "automaticChatOpenOnNavigation": true,
        "hidePostCTA": true,
    };
    var s = document.createElement("script"); s.type = "text/javascript"; s.async = true;
    s.src = "https://widget.kommunicate.io/v2/kommunicate.app";
    var h = document.getElementsByTagName("head")[0]; h.appendChild(s);
    window.kommunicate = m; m._globals = kommunicateSettings;
})(document, window.kommunicate || {});
于 2021-05-07T17:31:23.180 回答