使用 Twilio 时,如何从 Phone 调用浏览器?
When using Twilio, how can I make a call from a Phone to a Browser?
我正在尝试从 phone 调用浏览器,但似乎无法正常工作。
我想我需要向调用添加一个 client
参数,但我在文档中找不到有关如何执行此操作的任何答案。
我正在使用 PHP TWIML generator。
public function outboundCallResponse()
{
$this->response->say('Please wait while we connect your call.');
$dial = $this->response->dial(null, ['callerId' => '+1##########']);
$dial->client('client-name'); // how do I make this part work?
$dial->number('+1##########');
return $this->response;
}
我是 Twilio 的开发人员传道者。
如果我是你,我会从 Twilio "How to" 部分浏览 this tutorial on how to set up an app with Twilio Client and PHP。
如果您想直接跳到有关接听电话的部分,take a look here。
我正在尝试从 phone 调用浏览器,但似乎无法正常工作。
我想我需要向调用添加一个 client
参数,但我在文档中找不到有关如何执行此操作的任何答案。
我正在使用 PHP TWIML generator。
public function outboundCallResponse()
{
$this->response->say('Please wait while we connect your call.');
$dial = $this->response->dial(null, ['callerId' => '+1##########']);
$dial->client('client-name'); // how do I make this part work?
$dial->number('+1##########');
return $this->response;
}
我是 Twilio 的开发人员传道者。
如果我是你,我会从 Twilio "How to" 部分浏览 this tutorial on how to set up an app with Twilio Client and PHP。
如果您想直接跳到有关接听电话的部分,take a look here。