I have integrated Kommunicate service into my website and added a Dialogflow
chatbot into it.
I have added the kommunicate
widget successfuly and it worked well with the configurations as shown below:
var kommunicateSettings = {
"appId":"APP-ID",
"conversationTitle":"SAMPLE",
};
But when I add the following settings, the widget asks to enter the name and email and when I submit it, the widget disappears with a transparent box with a shadow:
var kommunicateSettings = {
"appId":"APP-ID",
"conversationTitle":"SAMPLE",
"askUserDetails":['name', 'email'],
"emojilibrary":true,
"locShare":true
};
It does not show the chat widget now, what to do?