将dialogflow与网站小部件ui集成

时间:2019-06-27 01:20:25

标签: web dialogflow

我想将我制作的dialogflow机器人集成到网站中,并更改徽标,并使其在单击按钮并保持浮动时显示出来 我尝试查找webdemo的源代码,然后将其复制粘贴到我的网站并编辑了img src,但是没有用 有解决方案吗?

1 个答案:

答案 0 :(得分:1)

您可以使用kommunicate.io Web API来在网站中使用dialogflow应用。

您只需要在网页的JavaScript代码中添加kommunicate凭据(APP_ID),即可根据需要显示小部件。

<script type="text/javascript">
(function(d, m){

/*---------------- Kommunicate settings start ----------------*/

 var kommunicateSettings = {
  "appId": "<APP_ID>",
  "conversationTitle":"<CONVERSATION_TITLE>",
  "automaticChatOpenOnNavigation": true,
  "popupWidget": true
  /*
  "onInit": function (){
    // paste your code here
  },
    "botIds":["<BOT_ID_1>","<BOT_ID_2>"]
  */
  };

/*----------------- Kommunicate settings end ------------------*/

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

使用this指南来集成Dialogflow。

希望这会有所帮助。