在Dialogflow Kommunicate聊天机器人中使用一次后隐藏快速响应选项



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

这里给出了一个如何在我的机器人中显示快速响应的示例:示例

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 || {});

相关内容

  • 没有找到相关文章

最新更新