1

我正在使用 dhee.ai 小部件在我的网站上接受订单。我已经确定了我想预先以编程方式启动具有某些用户意图的小部件的情况。这应该发生,而无需用户单击机器人图标。

我怎样才能做到这一点 ?

4

1 回答 1

2

可以使用如下的 javascript 调用来完成

var myIntent = 'yourIntentToBeServedOnStartup'
var myParams = {param1:value1} //optional
var phoneNum = '9999999999'

DheeChatWidget.launchWithIntent("Guest", phoneNum, language, myIntent, myParams);

使用自定义意图启动的示例 HTML,可以在此处查看 https://github.com/DheeYantra/dhee-widget-examples/blob/main/src/main/resources/static/index.html

于 2020-11-24T12:22:28.293 回答