이상한 문제가 있습니다.Twilio 회의 후 종료 명령이 제대로 실행되지 않습니다.
내 시스템에서는 참가자 2 명이 회의에서 만납니다. 먼저 A
이 전화를 걸고이 회의에 참가하기 위해 B
이 전화를 거는 동안 대기하기 위해 회의에 참가합니다. 그런 다음 회의가 A
으로 끝난 후 몇 가지 Twiml을 실행하여 B
몇 가지 질문을하고 싶습니다. A
를 들어
: 아래
프로세스의 마지막 단계에서 참가자들에게 내 Twiml의 출력
<Response>
<Gather numDigits="1">
<Play>/somemusic.mp3</Play>
</Gather>
</Response>
A
를 들어 : A
를 들어
<Response>
<Play>/THANK_YOU.mp3</Play><Redirect/>
</Response>
:
<Response>
<Play>/PRE_FORWARD.mp3</Play>
<Dial>
<Conference waitUrl="http://twimlets.com/holdmusic?Bucket=com.twilio.music.classical" endConferenceOnExit="true">52d9771d4e1a41389983517</Conference>
</Dial>
</Response>
회의 종료 후
B
를 들어
<Response>
<Dial record="true" action="http://XYZ/joinconference/name/52d9771d4e1a41389983517/conference_ended/1">
<Conference waitUrl="http://twimlets.com/holdmusic?Bucket=com.twilio.music.classical" endConferenceOnExit="true">52d9771d4e1a41389983517</Conference>
</Dial>
</Response>
, :그를 다이얼 한 후 B
를 들어
,
<Response>
<Gather numDigits="1">
<Play>/QUESTION.mp3</Play>
<Pause length="5"/>
</Gather>
</Response>
문제는 다음과 같습니다 B
는 /QUESTION.mp3
를 완전히 들리지 않습니다. 그는이 녹음의 1 초만을 듣습니다. 전화가 끊긴 후. No Gather
결과가 제출되었습니다.
무엇이 될 수 있습니까? 내가 도대체 뭘 잘못하고있는 겁니까?