2016-07-14 3 views

답변

1

개발자 전도사 Twilio가 여기 있습니다.

Twilio Console by updating your numbers에 수신 통화 웹 훅을 설정할 수 있습니다. 또는 VoiceUrl 매개 변수를 새 URL로 설정하여 번호에 대한 업데이트를 게시하여 REST API를 통해 설정할 수 있습니다.

$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" 
)); 

가 전혀 도움이되는지 알려주세요 : PHP에서 같을 것이다

.

+1

일반적으로 인바운드 및 아웃 바운드 호출에 대해 콘솔에 'CALL STATUS CHANGES'가 있습니다. 고맙습니다! –