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");
});