I am started to learn twilio and currently using it on the local server to make some basic call practices. For the testing purposes i have used twilio code.
$call = $twilio->calls
->create("+123",
"+123",
array("url" => "http://demo.twilio.com/docs/voice.xml")
);
Problem i am getting is is there any other way i have to redirect the url
parameter to local? How can i specify the Say
and Play
parameters in the url
array.