我们可以在 Twilio 的电话会议中拨打号码吗?

Can we call a number in middle of a conference call in Twilio?

我是这个领域的新手。来质疑。我想在电话会议期间拨打一个号码并将该参与者添加到当前会议。 我已经在 Java 中尝试了给定 here 会议的示例代码。有没有办法收集输入然后拨打号码并将参与者添加到同一会议。

这是我试过的。我创建了一个会议,它将 return 以下响应

<Response>
<Dial hangupOnStar="true">
<Conference startConferenceOnEnter="true" endConferenceOnExit="true">My Conference</Conference>
</Dial>
<Gather timeout="10" action="/twilio-tut/add/participant?confName=My%20Conference" finishOnKey="#">
<Say>Please enter the number you want to connect followed by hash key.</Say></Gather>
</Response>

现在会议中的一位与会者说 A* 并拨了另一个他想加入会议的人的号码。

现在Gather动词的动作,我正在拨打一个号码,代码如下

Number number = 
                    new Number.Builder(some_valid_phone_number)
                    .statusCallback("https://xxxxxxx.ngrok.io/twilio-tut/to/conference")
                    .statusCallbackMethod(Method.POST)
                    .statusCallbackEvents(Arrays.asList(Event.ANSWERED))
                    .build();

            Dial dial = new Dial.Builder()
                    .number(number)
                    .conference(new Conference.Builder(conferenceName).build())
                    .build();

            twiml = new VoiceResponse.Builder().dial(dial)
                    .build();

在 statusCallback 上,我正在更新调用以将呼叫者和被呼叫者重定向到会议,其中呼叫者是通过按 * 离开会议的人,即 A被叫方是 some_valid_phone_number。代码如下

Call callee = Call.updater(callSid)
                    .setUrl("https://xxxxx.ngrok.io/twilio-tut/voice").setMethod(HttpMethod.POST).update();
            Call caller = Call.updater(parentCallSid)
                    .setUrl("https://xxxxx.ngrok.io/twilio-tut/voice").setMethod(HttpMethod.POST).update();

以上代码转移被叫方并断开与异常的呼叫方

com.twilio.exception.ApiException: Call is not in-progress. Cannot redirect.

我想做的是 A 呼叫其他号码,最后他们将连接到同一个会议。并且A应该能够呼叫其他号码并将它们添加到同一会议中。我正在使用手机 phone 连接号码。

提前致谢。

这里是 Twilio 员工。

可以!您可以做的是使用 REST API 进行出站呼叫,并使用 Conference 动词和相同的会议名称调用 return TwiML - 例如,如果您创建了一个名为conference1 您需要使用类似于以下内容的 TwiML 进行响应:

<Response>
    <Dial>
        <Conference>conference1</Conference>
    </Dial>
</Response>

这会将出站呼叫连接到现有会议,或创建它。

如果您在现有呼叫中使用 <Gather> 动词进行输入,那么您也可以使用此解决方案。您想要重定向呼叫流程,而不是创建一个全新的呼叫,所以只需 return Gather 回调中的这个 TwiML。

如果您一直跟踪会议 SID,您还可以通过创建出站电话会议 (sample code here) 以编程方式添加它们。与 TwiML 类似,如果电话会议不存在,Twilio 将创建它;如果确实存在,Twilio 会将此人添加到其中。

这里是 Twilio 开发人员布道者。

您遇到的问题是,您试图在响应 <Gather>. Rather than making a <Dial> with a <Number> to the number you dial with the <Gather>, you should create that call using the REST API 时在 TwiML 中执行两次拨号,并使用 TwiML 将 phone 上的人引导回原始状态会议。

为了明确步骤,它应该是这样的:

  1. 用户拨打 Twilio 号码
  2. TwiML 响应,使用 hangUpOnStar 将用户添加到会议
  3. 用户按星标,Gather 要求拨打号码
  4. 在对来自 Gather 的号码的响应中,使用 REST 创建呼叫 API 并将该呼叫定向到原始入站 URL(“/conference”)
  5. 在对 Gather 操作的响应中,return TwiML 到 return 会议的原始呼叫者(重定向到原始入站 URL)

我不是 Java 开发人员,所以这可能是错误的,但您想要的东西看起来有点像这样:

@WebServlet("/dial/participant")
public class AddParticipantToConference extends HttpServlet {

    public static final String MODERATOR = System.getenv("MY_PHONE_NUMBER");
    public static final String ACCOUNT_SID = System.getenv("TWILIO_ACCOUNT_SID");
    public static final String AUTH_TOKEN = System.getenv("TWILIO_AUTH_TOKEN");

    @Override
    protected void doPost(HttpServletRequest servletRequest, HttpServletResponse servletResponse)
            throws IOException {    
        String selectedOption = servletRequest.getParameter("Digits");

        VoiceResponse twiml;

        if(selectedOption != null){
            Call call = Call.creator(new PhoneNumber("+" + selectedOption), new PhoneNumber(MODERATOR),
        new URI("https://example.com/conference")).create();
        }

        twiml = new VoiceResponse.Builder().redirect("/conference").build();

        servletResponse.setContentType("text/xml");

        try {
            servletResponse.getWriter().print(twiml.toXml());
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

您现在不需要 statusCallback。

如果有帮助请告诉我