如何从触发它们的传入调用中将传出API调用标记为子。 (假设$request->Input('CallSid')
是来电的CallSid
)
<?php
// Get the PHP helper library from https://twilio.com/docs/libraries/php
require_once '/path/to/vendor/autoload.php'; // Loads the library
use Twilio\Rest\Client;
// Your Account Sid and Auth Token from twilio.com/user/account
$sid = "AC6ad3d3d3f5ed08ebf2b662cae36b4d32";
$token = "your_auth_token";
$client = new Client($sid, $token);
$call = $client->calls->create(
"+14155551212", "+14158675310",
array("url" => "http://demo.twilio.com/docs/voice.xml")
);
echo $call->sid;
来自https://www.twilio.com/docs/voice/make-calls的
答案 0 :(得分:1)
这里是Twilio开发人员的传播者。
无法通过API设置呼叫的ParentCallSid
属性。在TwiML中通常通过<Dial>
生成呼叫时,将ParentCallSid
设置为另一个呼叫的一部分。
从REST API创建调用时,该调用没有父级。