使用动词录制通话时如何接收用于 transcribeCallback 的 HTTP GET?
twiml.record({ action: '/process_recording?callID=, method: 'GET', timeout: '15', maxLength: '120', finishOnKey: '*', transcribe: 'true', playBeep: 'true', transcribeCallback: '/process_transcription
我在 process_recording url 上收到一个 GET 请求,但在 process_transcription url 上收到一个 POST 请求
我正在使用 parse Cloud Code 来处理 url 请求,并且在 Parse Cloud Code 的快速路由上出现以下错误:
快速路由错误:无法 POST /process_transcription
有什么方法可以让 twilio 在 transcribeCallback 上发出 GET 请求而不是 POST 请求????