Twilio:第三个呼叫者可以插入正在进行的通话

问题描述 投票:0回答:2

我有一个场景,呼叫者呼叫代理。呼叫者和代理已经参与。第三个呼叫者(主管)如何插话来听他们的谈话。

谢谢你,

javascript php twilio twilio-php
2个回答
0
投票

只需使用 TwiML 拨入会议,如下所示:

<Response>
  <Dial>
    <Conference>conference-room</Conference>
  </Dial>
</Response>

如果您希望主管听到对话但不被听到,可以使用静音属性:

muted="true"

0
投票

您可以使用 API 在现有会议中添加参与者:

client.conferences(conferencesid)
    .participants
    .create({
        from: '{put your twilio number here}',
        to: `{put your supervisor number here}`,
        muted: true
    })
    .then(participant => console.log(partipant));
© www.soinside.com 2019 - 2024. All rights reserved.