skip to Main Content

Twillio Php api

There I'm Using Twillio Example api // Step 1: Get the Twilio-PHP library from twilio.com/docs/libraries/php, // and move it into the folder containing this sendnotifications.php file. require "Services/Twilio.php"; // Step 2: set our AccountSid and AuthToken from https://twilio.com/console $AccountSid =…

VIEW QUESTION

Twilio Use Case – Twillio

I am considering using Twillio as an extension in an existing application. My use-case is this: User clicks button in application Using Twilio API, the application calls the user. The user answers their phone Twilio connects user to some phone…

VIEW QUESTION

Twillio call disconnect after the user recieves one ring

I want to immediately terminate a call as soon as the call is initialized an the user gets one ring this are my routes Route::any('missedCall','RegistrationController@missedCall'); Route::any('callForMissedCall',function(){ $xml = new SimpleXMLElement('<?xml version="1.0" encoding="UTF-8"? ><Response/>'); $xml->addChild('Dial timeout="0"'); $header['Content-Type'] = 'application/xml'; return Response::make($xml->asXML(),…

VIEW QUESTION
Back To Top
Search