如何将回调URL添加到Twilio SMS发送代码?

时间:2012-11-03 18:12:51

标签: php twilio

我正在使用官方的PHP Twilio库代码来发送和接收呼叫。我可以使用以下示例代码发送短信:

<?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!"
);
?>

现在我想将回调URL添加到上面的代码中。它可以做到,但我不知道如何为$ params添加数组。

function create($from, $to, $body, array $params = array()) {
    return parent::_create(array(
        'From' => $from,
        'To' => $to,
        'Body' => $body
    ) + $params);
}

感谢您的帮助

1 个答案:

答案 0 :(得分:5)

尝试以下

function create($from, $to, $body, array $params = array()) {
    return parent::_create(array(
        'From' => $from,
        'To' => $to,
        'Body' => $body
    ) + array('StatusCallback'=>'http://yourdomain.com/yoururl.php'));
}

$message = $client->account->sms_messages->create(
  '+1905xxxxxxx', // From a valid Twilio number
  '+278xxxxxxxx', // Text this number
  "Hello, test SMS message number 001!",
   array('StatusCallback'=>'http://yourdomain.com/yoururl.php')
);

您可以在发送短信here时详细了解如何使用StatusCallback