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

Popular posts from this blog

javascript - Confirm a form & display message if form is valid with JQuery -

Retrieving ETA (estimated time of arrival) with Google Distance Matrix API and public transit as transport mode -

ionic framework - Meteor - Error: Failed to execute 'insertBefore' on 'Node' -