PHP code example of thinq / twilio-thinqlcr
1. Go to this page and download the library: Download thinq/twilio-thinqlcr library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
thinq / twilio-thinqlcr example snippets
wilioWithThinQLCR\TwilioWrapper;
$twilio_account_sid = "SDIFUSDO4IFSDF4OSDF2OIDJSFOISDF";
$twilio_auth_token = "adsf987asd9f876sad98f7as9d8fsa9";
$thinQ_id = "12345";
$thinQ_token = "daf98dsf9g876sd987fg6d78fsg897dsf6g";
$from_number = "19198900000";
$to_number = "11234567890";
$twiML = "http://example.com/xml/twilio-custom.xml";
$wrapperObj = new TwilioWrapper($twilio_account_sid, $twilio_auth_token, $thinQ_id, $thinQ_token);
$newCall = $wrapperObj->call($from_number, $to_number, array('url'=>$twiML));
echo "Call sid: " . $newCall->sid . PHP_EOL;