在 twilio webhook 中做出空白响应
Make a blank response in twilio webhook
如何使用 php/laravel 在 twilio 中做出空白响应?
这是一个示例 Twiml:
<Response></Response>
这是我想出的代码(我正在使用 laravel):
public function receivedSms(){
$response = new Twiml();
return response($response)
->header('Content-Type', 'text/xml');
}
如何使用 php/laravel 在 twilio 中做出空白响应?
这是一个示例 Twiml:
<Response></Response>
这是我想出的代码(我正在使用 laravel):
public function receivedSms(){
$response = new Twiml();
return response($response)
->header('Content-Type', 'text/xml');
}