php - Text to speech not working in Twilio -
i create simple app in php. call phone number , play audio. working when changed <play></play> <say></say>
,it not working. answer phone no sound, , after 8 seconds hang up.
there no error in logs.
<?php require __dir__ . '/twilio-php-master/twilio/autoload.php'; use twilio\rest\client; // account sid , auth token twilio.com/user/account $sid = "acxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; $token = "018616xxxxxxxxxxxxxxxxxxxxxxxxxx"; $client = new client($sid, $token); $call = $client->calls->create( "+173145xxxxx","+183224xxxxx", array("url" => "https://xxxxx.ngrok.io/voice.php") ); echo $call; ?>
this php file responds xml,
<?php header("content-type: application/xml"); ?> <?xml version="1.0" encoding="utf-8"?> <response> <say>this test messsage.</say> </response>
Comments
Post a Comment