我在我的 Rails 应用程序中设置了 twilio.js 并且运行良好,现在我需要的是在通话断开后我想知道通话状态,如果通话没有参加,我必须拨打另一个号码,这是我的断开功能,如何使用 twilio.js 检查通话状态?
Twilio.Device.disconnect(function(connection) {
// Disable the hangup button and enable the call buttons
hangUpButton.prop("disabled", true);
callCustomerButtons.prop("disabled", false);
callSupportButton.prop("disabled", false);
updateCallStatus("Ready");
});