Skip to content

Instantly share code, notes, and snippets.

@hatanaka-akihiro
Created February 14, 2014 04:19
Show Gist options
  • Save hatanaka-akihiro/8995721 to your computer and use it in GitHub Desktop.
Save hatanaka-akihiro/8995721 to your computer and use it in GitHub Desktop.
call.php
<?php
require '../vendor/autoload.php';
$AccountSid = 'xxxxxxxx';
$AuthToken = 'xxxxxxxx';
$client = new Services_Twilio($AccountSid, $AuthToken);
$From = '+81xxxxxxxx';
$To = '+81xxxxxxxx';
$call = $client->account->calls->create($From, $To,
'http://158.199.192.79/hatanaka/ivr.xml', array());
?>
<html>
<body>
電話をかけました。
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment