Skip to content

Instantly share code, notes, and snippets.

@twilioforkwc
Created September 22, 2015 13:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save twilioforkwc/46fea38f7b668a31a04d to your computer and use it in GitHub Desktop.
Save twilioforkwc/46fea38f7b668a31a04d to your computer and use it in GitHub Desktop.
<?php
require '../Services/Twilio.php';
$response = new Services_Twilio_Twiml();
$gather = $response->gather(array(
'action' => '[your url]/process_poll.php',
'method' => 'GET',
'timeout' => '30',
'numDigits' => '1'
));
$gather->say("これから投票を行います。1桁の作品番号を押してください。", array('language' => 'ja-jp'));
header("Content-type: text/xml");
print $response;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment