Twilio Twimlets - 有没有办法改变声音?

Twilio Twimlets - Is there a way to change the voice?

我正在使用 Twimlet 收集呼叫接收者按下的按钮。所有这一切都工作得很好而且花花公子,但是有没有办法将 Twimlet 消息的声音更改为 alice

她的声音听起来比男人的好得多,我想在通话过程中一直使用它,而不是只在 twimlet 部分使用男人的声音。

我知道如何在 TwiML 中添加 voice='alice' 参数,但是由于 Twimlets 不提供深度定制,我有什么方法可以定义它吗?

你可以,但你必须在你的 'menu' twimlet 前面放一个 'echo' 类型的 twimlet。在 'echo' twimlet 中,在 'Say' 之后使用 'Redirect' 重定向到 'menu' twimlet 的 url。

'echo' twimlet 的代码:

<Response>
  <Say voice="alice">Hey. Press a key on your phone.</Say>
  <Redirect method="POST">[the url of your menu twimlet]</Redirect>
</Response>

在你的 'menu' twimlet 上将消息留空。