我知道我可以在拨打电话时设置状态回拨网址 但是如何为入站呼叫设置状态回调网址?
答案 0 :(得分:1)
Twilio开发者传道者在这里。
您可以在Twilio Console by updating your numbers中设置入站呼叫webhook。或者,您可以通过将VoiceUrl
参数设置为新网址来更新您的号码,通过REST API进行设置。
在PHP中看起来像这样:
$sid = "your_account_sid";
$token = "your_auth_token";
$client = new Services_Twilio($sid, $token);
$number = $client->account->incoming_phone_numbers->get("your_phone_number_sid");
$number->update(array(
"VoiceUrl" => "http://example.com/voice"
));
让我知道这是否有帮助。