Twilio重定向到只挂断的记录

Twilio重定向到只挂断的记录,twilio,voice,Twilio,Voice,我让呼叫者能够退出队列并留下语音邮件,但是,当发送到语音邮件TWiML时,它会播放传出的消息,但不会播放嘟嘟声或录音,它只是挂断。我在控制台中也没有看到错误 如果我将此页面设置为语音应答页面,它将按预期工作。我疯了 answer.asp: <?xml version="1.0" encoding="UTF-8" ?> <Response> <Say voice="woman">Thank you for calling . </Say> <S

我让呼叫者能够退出队列并留下语音邮件,但是,当发送到语音邮件TWiML时,它会播放传出的消息,但不会播放嘟嘟声或录音,它只是挂断。我在控制台中也没有看到错误

如果我将此页面设置为语音应答页面,它将按预期工作。我疯了

answer.asp:

<?xml version="1.0" encoding="UTF-8" ?>
<Response>
<Say voice="woman">Thank you for calling . </Say>
<Say voice="woman">No notices</Say>
<Say voice="woman">Calls may be recorded for quality and training purposes.</Say>
<Say voice="woman">Please hold for a customer service representative. </Say>
<Enqueue method="GET" action=/voice/dequeue.asp" waitUrlMethod="GET" waitUrl="/voice/holdMusic.asp">CustomerService</Enqueue>
</Response>

谢谢你打电话来。
没有通知
出于质量和培训目的,可能会记录通话。
请稍候,找一位客户服务代表。

这很奇怪,TwiML是有效的,属性看起来都是正确的。实际上我在这里有点迷路了。您最好与他们联系并向他们发送一些呼叫SID,例如发生这种情况时的呼叫。我提供了一张支持票。我只是想我应该先试试,看看我是否遗漏了什么。这很公平。不过在我看来没有什么不对劲,所以也许还有更多。谢谢。我添加了更多TWiML以供参考。
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Gather numDigits="1" action="/voice/quitHold.asp" method="GET">
<Say>You are number 1 of 1 in the queue. Expected hold time is under a minute. Press any key while on hold to leave a voicemail.</Say>
<Play>/voice/mp3s/quiet.mp3</Play>
</Gather>
<Redirect/>
</Response>
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Say voice="woman">Unfortuantely, we are experiencing long hold times and we are transferring you to voicemail.</Say>
<Redirect method="GET">/voice/quitHold.asp</Redirect>
</Response>
<?xml version="1.0" encoding="UTF-8" ?>
<Response>
<Say voice="woman">You are leaving the hold queue and going to voicemail</Say>
<Say voice="woman">Please ree cord a message and we will return your call shortly. If you are calling after hours, we will return your call the next business day. </Say>
<Record finishOnKey="*" method="GET" action="/voice/hangup.asp" maxLength="60" playBeep="true" transcribe="true" transcribeCallback="/voice/transcribe.asp" recordingStatusCallbackMethod="GET" recordingStatusCallback="/voice/voicemail.asp" trim="trim-silence" />
<Hangup/>   
</Response>