CodeIgniter-Twilio
CodeIgniter-Twilio copied to clipboard
CodeIgniter library wrapper for the Twilio API class
====================================== Twilio CodeIgniter Library
by Ben Edmunds
A basic Twilio REST API CodeIgniter library wrapper using the PHP class provided by Twilio.
WARNING: Sorry I don't use or support this library anymore. Use at your own risk. You can check the official PHP SDK here: https://github.com/twilio/twilio-php
SETUP: Just drop the files in their appropriate folders (ie "libraries/twilio.php" goes in your "libraries" folder) and add your settings in the "config/twilio.php" file.
NOTES: All calls to the rest class are routed through the library class, so for example:
instead of: $client = new TwilioRestClient($AccountSid, $AuthToken); $response = $client->request("/$ApiVersion/Accounts/$AccountSid/Calls", "POST", $data);
you would do something like: $this->load->library('twilio'); $this->twilio->request("/$ApiVersion/Accounts/$AccountSid/Calls", "POST", $data);
-Ben Edmunds [email protected] @benedmunds