请有人对此有任何解决方案吗?我有父母sid,但我希望孩子sid获得通话时间。或者是否可以单独使用其他参数/独立获取子sid?
答案 0 :(得分:2)
Twilio开发者传道者在这里。
您可以使用Calls list resource and filtering by ParentCallSid
找到来自父SID的子呼叫。
像(使用Node.js)这样的东西:
client.calls.list({
parentCallSid: parentCallSid
},
calls => console.log(calls);
);
在PHP中
$sid = "your_account_sid";
$token = "your_auth_token";
$twilio = new Client($sid, $token);
$calls = $twilio->calls->read(array(
"parentCallSid" => $parentCallSid
));