How to add the callback URL to Twilio SMS sending code?
问题 I'm using the official PHP Twilio library code for sending and receiving call. I can send an SMS using the example code below: <?php require('twilio/Twilio.php'); $sid = "AC************"; $token = "2************"; $client = new Services_Twilio($sid, $token); $message = $client->account->sms_messages->create( '+1905xxxxxxx', // From a valid Twilio number '+278xxxxxxxx', // Text this number "Hello, test SMS message number 001!" ); ?> Now I wan to add the callback URL to the above code. It can