播放默认的哔声

时间:2017-01-24 16:42:12

标签: twilio

有没有办法播放默认的Twilio哔声?根据文档,它似乎仅适用于<Record><Conference>。我希望实现这样的目标:

<Say>Enter your answer after the beep.</Say>
<Gather action="/blah"></Gather>
/* Beep sound goes here */

谢谢!

1 个答案:

答案 0 :(得分:2)

Twilio开发者传道者在这里。

您可以使用<Play>动词播放您想要的任何内容。因此,在上面的示例中,您可以执行以下操作:

<Say>Enter your answer after the beep.</Say>
<Play>https://www.soundjay.com/button/sounds/beep-01a.mp3</Play>
<Gather action="/blah"></Gather>

这样,它会说出你的文字,然后它会发出哔哔声并开始处理你的<Gather>

希望这可以帮助你。