您好,我正在从外部号码拨打twillio
号码,该号码要求用户在屏幕上键入7位数字。用户输入数字后,它将自动挂断。我试图让用户输入数字,但没有成功。这就是我尝试过的
if($_REQUEST['source'] == 'call_to_twilio'){
$response->say('Please enter your pin code!');
$gather = $response->gather([
'timeout' => 120,
'numDigits' => 7,
'action' => "myserver_ip_address/twilio_response?source=pin_code"
]);
$response->say('Call ended');
}
if($_REQUEST['source'] == 'pin_code'){
file_put_contents("pin_code.txt",print_r($_REQUEST,true));
}
我制作了一个文件,我在其中得到名为pin_code.txt
的响应。但是当我准备好文件时,它没有给我任何数字。