我正在使用twilio进行自动出站呼叫。我正在尝试播放音频文件,并同时收集用户的输入。当用户停止输入时,必须调用音频文件和收集动作。 我所做的是:
gather = Gather(input='speech dtmf',speechTimeout=2,numDigits=1, action="gatherResponse/{}".format(call_id), method='POST')
response.play("https://any_audio_url.mp3")
response.append(gather)
此代码仅播放音频文件,不调用收集动作。