当代理断开呼叫用户未断开连接时,来电中的 twilio
twilio in incoming call when agent disconnect the call user is not disconnecting
这是我用来连接电话的twiml-
<Response>
<Dial action="dailemptyqueueurl">
<Client statusCallbackEvent="initiated ringing answered completed" statusCallback="twilio_call_notification_handler.php" statusCallbackMethod="POST">cleint</Client>
</Dial>
<Redirect>holdmusic</Redirect>
</Response>
此处为 Twilio 开发人员布道师。
这是我之前建议的轻微后遗症,对此深表歉意。
首先,当 <Dial>
has an action, it will go onto that URL instead of continuing with the TwiML and going to the <Redirect>
在这种情况下。所以要注意这一点。
其次,因为我们已经使用了这种技术,所以通话不只是结束。但是,我相信您正在将 Twilio Client 与您的代理一起使用。因此,当您在代理端挂断电话时,您可以向您的服务器发出请求以也使用 REST API to hang up 用户端。
这是我用来连接电话的twiml-
<Response>
<Dial action="dailemptyqueueurl">
<Client statusCallbackEvent="initiated ringing answered completed" statusCallback="twilio_call_notification_handler.php" statusCallbackMethod="POST">cleint</Client>
</Dial>
<Redirect>holdmusic</Redirect>
</Response>
此处为 Twilio 开发人员布道师。
这是我之前建议的轻微后遗症,对此深表歉意。
首先,当 <Dial>
has an action, it will go onto that URL instead of continuing with the TwiML and going to the <Redirect>
在这种情况下。所以要注意这一点。
其次,因为我们已经使用了这种技术,所以通话不只是结束。但是,我相信您正在将 Twilio Client 与您的代理一起使用。因此,当您在代理端挂断电话时,您可以向您的服务器发出请求以也使用 REST API to hang up 用户端。