Twilio-中断一个会话块

Twilio-中断一个会话块,twilio,Twilio,我有一个播放块,上面有许多.mp3文件(它读取帐户余额和其他有关帐户的信息) 结果是一条信息需要一段时间才能听到。根据所说的内容,信息的长度会有所不同 我想要“any”键结束播放消息并跳回到c# 我尝试使用聚集,但超时值要么截断Say块,要么在结束时等待时间(如果未按任何键) 有没有想过如何做到这一点 当前的流程如下所示: <?xml version="1.0"?> <Response> <Play>/Voice/test/messages/Curre

我有一个播放块,上面有许多.mp3文件(它读取帐户余额和其他有关帐户的信息)

结果是一条信息需要一段时间才能听到。根据所说的内容,信息的长度会有所不同

我想要“any”键结束播放消息并跳回到c#

我尝试使用聚集,但超时值要么截断Say块,要么在结束时等待时间(如果未按任何键)

有没有想过如何做到这一点

当前的流程如下所示:

<?xml version="1.0"?>
<Response>
    <Play>/Voice/test/messages/CurrentlyYourPAYGBalanceIs_.mp3</Play>
    <Play>/Voice/test/common/numbers/78.mp3</Play>
    <Play>/Voice/test/common/currency/_pounds_.mp3</Play>
    <Play>/Voice/test/common/misc/_and_.mp3</Play>
    <Play>/Voice/test/common/numbers/91.mp3</Play>
    <Play>/Voice/test/common/currency/Pence.mp3</Play>
    <Play>/Voice/test/messages/_AndYouHavea_.mp3</Play>
    <Play>/Voice/test/products/BD021.mp3</Play>
    <Play>/Voice/test/common/misc/_with_.mp3</Play>
    <Play>/Voice/test/common/numbers/95.mp3</Play>
    <Play>/Voice/test/messages/_VoiceBalance.mp3</Play>
    <Play>/Voice/test/common/misc/_and_.mp3</Play>
    <Play>/Voice/test/common/numbers/2.mp3</Play>
    <Play>/Voice/test/common/data/_gigabytes_.mp3</Play>
    <Play>/Voice/test/common/numbers/200.mp3</Play>
    <Play>/Voice/test/common/misc/_and_.mp3</Play>
    <Play>/Voice/test/common/numbers/94.mp3</Play>
    <Play>/Voice/test/common/data/_megabytes_.mp3</Play>
    <Play>/Voice/test/common/misc/_remaining.mp3</Play>
    <Play>/Voice/test/common/misc/Expiring_.mp3</Play>
    <Play>/Voice/test/common/dates/31.mp3</Play>
    <Play>/Voice/test/common/months/_of12_.mp3</Play>
    <Play>/Voice/test/common/years/2016.mp3</Play>
</Response>

/语音/测试/消息/CurrentlyYourPayGBalances_uu3;uuu3
/语音/测试/常用/数字/78.mp3
/语音/测试/通用/货币/英镑.mp3
/语音/测试/通用/杂项/_和u.mp3
/语音/测试/通用/数字/91.mp3
/语音/测试/通用/货币/便士mp3
/语音/测试/信息/_和您有一个.mp3
/语音/测试/产品/BD021.mp3
/带mp3的语音/测试/通用/杂项/u
/语音/测试/通用/数字/95.mp3
/语音/测试/信息/_VoiceBalance.mp3
/语音/测试/通用/杂项/_和u.mp3
/语音/测试/通用/数字/2.mp3
/语音/测试/通用/数据/_千兆字节.mp3
/语音/测试/常用/数字/200.mp3
/语音/测试/通用/杂项/_和u.mp3
/语音/测试/常用/数字/94.mp3
/语音/测试/通用/数据/_兆字节.mp3
/语音/测试/通用/杂项/_.mp3
/语音/测试/通用/杂项/过期的.mp3
/语音/测试/常用/日期/31.mp3
/语音/test/common/months/\u12.mp3
/语音/测试/普通/年份/2016.mp3

David,看看这个问题:

具体而言:

播放可以中断,因为它被包装在
Gather
哪个点中 暂停操作


你可以将你的
包装在一个文件夹中,并指向一个包含你想要的说明的URL。

你好,大卫,你能发布你twiml的确切流量吗?梅根,我已经发布了当前的流量。谢谢你梅根-完美!