使用 Twilio,是否可以在电话会议期间接收用户输入?

With Twilio, is it possible to receive user input during a conference call?

Twilio documentation 提到您可以在用户收听消息时收集他们的键盘输入:

You can nest the following verbs within Gather: Say, Play, Pause. But you can't nest Gather within any other verbs.

会议标签不能嵌套在Gather标签中,那么有没有其他方法可以在使用会议标签连接到会议室后收集用户号码?

这里是 Twilio 布道者。

无法在电话会议中 <Gather>,但有解决方法。您可以利用 <Dial> verbs hangupOnStar 属性。

<Response>
    <Dial hangupOnStar="true">
        <Conference>example</Conference>
    </Dial>
    <Gather action="/redirectIntoConference?name=example" numDigits="1"></Gather>
</Response>

当用户按下 * 键时,Twilio 将断开他们与电话会议的连接,并立即开始收听他们的按键音。当 Gather 完成时,您只需将他们重定向回电话会议。

这使您可以执行标准 *6 组合键静音之类的操作。

希望对您有所帮助。