Dialogflow v2 API + Actions v2 API: MalformedResponse 'final_response' must be set

后端 未结 1 1425
梦如初夏
梦如初夏 2020-12-19 07:01

I\'m trying to start working on Google Actions v2 API together with Dialgoflow v2 API.

I have the following example (so far in Dialogflow -> Fulfillment Webhook) ta

相关标签:
1条回答
  • 2020-12-19 07:50

    Change this line:

    conv.ask('How are you?');

    to this:

    conv.close('How are you?');

    the close method configures the required final_response field for you

    0 讨论(0)
提交回复
热议问题