GoogleCloudPlatform / dialogflow-integrations

Dialogflow integrations with multiple platforms including KIK, Skype, Spark, Twlio, Twitter and Viber
https://cloud.google.com/dialogflow/
Apache License 2.0
248 stars 501 forks source link

Twilio SMS integration fulfillment messages support #54

Open josedaniel opened 3 years ago

josedaniel commented 3 years ago

Hi there. There was a bug with the integration, as the server would always send the content of the fulfillmentText property of the Dialogflow payload instead of the more adequate element from the fulfillmentMessages array, that contains the right response from the fulfillment hook. For the integration to work properly, the fulfillment response must contain an element in the fulfillmentMessages array as follows:

[{
      text: {
        text: YOUR_TEXT
      },
      platform: 'PLATFORM_UNSPECIFIED'
}]  

This way, the integration will always send the proper message, no matter if it comes from a fulfillment hook, or from Dialogflow itself.