Skip to content

Instantly share code, notes, and snippets.

@easterapps
Created July 31, 2018 15:27
Show Gist options
  • Save easterapps/add8cb2b66ccd152c8391f95ac96a3d9 to your computer and use it in GitHub Desktop.
Save easterapps/add8cb2b66ccd152c8391f95ac96a3d9 to your computer and use it in GitHub Desktop.
sample dialogflow v2 php webhook
<?php
include('Webhook.php');
$webhook = new Webhook('<your Google project id>');
$webhook->build_simpleResponse('Voice Text', "Display Text?");
$webhook->build_suggestions('Suggestion 1');
$webhook->build_suggestions('Suggestion 2');
$webhook->respond();
@sunlight76
Copy link

It seems that "displayText" => $stringToDisplay, is no more supported. I had to edit it in : "fulfillmentText" => $textToSpeak,

@hansblaauw64
Copy link

Would you be able to provide a sample for two carrousel items? I'm not able to get it right.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment