标签: twilio twilio-php
如何使用php / laravel在twilio中做出空白响应?
以下是示例Twiml: <Response></Response>
<Response></Response>
答案 0 :(得分:2)
这是我想出的代码(我正在使用laravel):
public function receivedSms(){ $response = new Twiml(); return response($response) ->header('Content-Type', 'text/xml'); }