模板和样式未显示在kore.ai消息中

时间:2019-07-19 16:44:00

标签: javascript bots chatbot

我正在尝试使用javascript实现消息中的样式,但是它显示的是代码而不是样式消息。 我是否必须在kore.ai机器人生成器中启用某些功能,例如某些SDK?我知道它是特定于平台的,但是到处都显示javascript代码,甚至在kore.ai测试机器人中也是如此。

所需的输出。

Desired output

我的代码。

var message={
"type": "template",
"payload":
{
"template_type": "button",
"text": "What do you want to do next?",
"buttons":
[{
"type": "web_url",
"title": "Show Website",
"url": "https://petersapparel.parseapp.com"
},
{
"type": "postback",
 "title": "Start Chatting",
"payload": "USER_DEFINED_PAYLOAD"
}
]
}
}
print(JSON.stringify(message));

我的输出。 enter image description here

0 个答案:

没有答案