Skip to content

Instantly share code, notes, and snippets.

@RobSpectre
Created May 21, 2012 16:15
Show Gist options
  • Save RobSpectre/2763082 to your computer and use it in GitHub Desktop.
Save RobSpectre/2763082 to your computer and use it in GitHub Desktop.
Callback folks who texted a number
<?php
require_once('Services/Twilio.php');
require_once('auth.php');
$client = new Services_Twilio($ACCOUNT_SID, $AUTH_TOKEN);
foreach($client->account->sms_messages->getIterator(0, 50, array("To"=>"+15556667777")) as $msg) {
print_r($msg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment