在twilio webhook中做出空白回应

时间:2018-07-25 09:20:18

标签: twilio twilio-php

如何使用php / laravel在twilio中做出空白响应?

以下是示例Twiml: <Response></Response>

1 个答案:

答案 0 :(得分:2)

这是我想出的代码(我正在使用laravel):

public function receivedSms(){
    $response = new Twiml();

    return response($response)
      ->header('Content-Type', 'text/xml');
}