2

我已将Kommunicate服务集成到我的网站中,并在其中添加了一个Dialogflow聊天机器人。

我已经kommunicate成功添加了小部件,并且它与如下所示的配置配合得很好:

var kommunicateSettings = {
    "appId":"APP-ID",
    "conversationTitle":"SAMPLE",
};

但是当我添加以下设置时,小部件会要求输入姓名和电子邮件,当我提交时,小部件会消失,并带有一个带阴影的透明框:

var kommunicateSettings = {
    "appId":"APP-ID",
    "conversationTitle":"SAMPLE",
    "askUserDetails":['name', 'email'],
    "emojilibrary":true,
    "locShare":true
};

它现在不显示聊天小部件,怎么办?

4

1 回答 1

2

The issue was related to askUserDetails parameter. When askUserDetails parameter was passed, it was loading some firefox incompatible CSS which was causing this behavior. Now, this issue is fixed and not reproducible in the latest version of Kommuncate chat SDK.

PS: I work for Kommunicate

于 2019-04-30T07:20:16.093 回答