Dailogflow内联编辑器响应

时间:2018-09-24 07:00:45

标签: dialogflow chatbot fulfillment

我正在尝试在Google的对话框流中显示内联编辑器的响应,但是没有得到响应。但是,所有必需实体都已从使用中获取。我从机器人收到的响应为“不可用”。以下是我在实现部分的index.js文件中编写的代码,并为我正在使用的Intent启用了实现。

UXTH     r0,r4               ; load vector number as argument to call
LDR     r1, [r5]         ; Load branch address from vector table and branch

BLX     R1

请同样帮我。谢谢。

1 个答案:

答案 0 :(得分:0)

您作为响应发送的JSON用于v1代理。 speechdisplayText属性在v2中已由fulfillmentText取代。替换:

response.send(JSON.stringify({"speech":chat,"displayText":chat}))

与此

response.send(JSON.stringify({fulfillmentText:chat}))