2

ブラウザーからブラウザーへの呼び出しを行っています。呼び出しが正常に確立された後、呼び出しは自動的に切断されます。レシーバーは着信関数を実行していません。誰でも私を助けることができますか?

Twilio.Device.setup(token, { debug : true});

Twilio.Device.ready(function (device) {
    console.log("Client '' is ready");
    //! Ready
});

Twilio.Device.error(function (error) {
    console.log("Error: " + error.message);

});

Twilio.Device.connect(function (conn) {
    console.log("Successfully established call");
});

Twilio.Device.disconnect(function (conn) {  
    console.log("From:" + conn.parameters.From);
    console.log("To:" + conn.parameters.To);
    console.log("Call ended");

});

Twilio.Device.incoming(function (conn) {
    console.log("Incoming connection from " + conn.parameters.From);
        // accept the incoming connection and start two-way audio

        conn.accept();

});

function call(id) {
    console.log('calling started! to ' + id);
    callto = id;
    params = {"client": id};
    Twilio.Device.connect(params);

}

呼び出し元を接続するためにソケットを使用しています! 2 番目のユーザーがシーンに入ると、送信側から受信側に通話が発信されます。受信側で着信機能が動作していません。

コンソール ログ:

[Device] Setting up PStream
twilio.min.js (line 58)
[WSTransport] Opening socket
twilio.min.js (line 58)
[WSTransport] attempting to connect
twilio.min.js (line 58)
[Device] Registering to eventStream with url: wss://matrix.twilio.com/2012-02-09/?AccessToken=eyJ&feature=publishPresence
twilio.min.js (line 58)
[Matrix] Attempting to connect to wss://matrix.twilio.com/2012-02-09/?AccessToken=eyJ&feature=publishPresence...
twilio.min.js (line 58)

[WSTransport] Socket opened
twilio.min.js (line 58)
[PStream] Setting token and publishing listen
twilio.min.js (line 58)
[Matrix] Socket opened... sending ready signal
twilio.min.js (line 58)
[Device] Stream is ready
twilio.min.js (line 58)
Client '' is ready
test (line 3718)
FIREBASE WARNING:
calling to user 12232343
test (line 3749)
[Twilio.PeerConnection] signalingState is "have-local-offer"
twilio.min.js (line 58)
[Twilio.PeerConnection] signalingState is "stable"
twilio.min.js (line 58)
Successfully established call
test (line 3728)
[Twilio.PeerConnection] iceConnectionState is "checking"
twilio.min.js (line 58)
[Twilio.PeerConnection] iceConnectionState is "connected"
twilio.min.js (line 58)
[Connection] Received HANGUP from gateway
twilio.min.js (line 58)
[Connection] Disconnecting...
twilio.min.js (line 58)
[Twilio.PeerConnection] iceConnectionState is "closed"
twilio.min.js (line 58)
[Twilio.PeerConnection] signalingState is "closed"
twilio.min.js (line 58)
From:undefined
test (line 3733)
To:undefined
test (line 3734)
Call ended
test (line 3735)
calling started! to 12122323
test (line 3749)
[Twilio.PeerConnection] signalingState is "have-local-offer"
twilio.min.js (line 58)
[Twilio.PeerConnection] signalingState is "stable"
twilio.min.js (line 58)
Successfully established call
test (line 3728)
[Twilio.PeerConnection] iceConnectionState is "checking"
twilio.min.js (line 58)
[Twilio.PeerConnection] iceConnectionState is "connected"
twilio.min.js (line 58)
[Connection] Received HANGUP from gateway
twilio.min.js (line 58)
[Connection] Disconnecting...
twilio.min.js (line 58)
[Twilio.PeerConnection] iceConnectionState is "closed"
twilio.min.js (line 58)
[Twilio.PeerConnection] signalingState is "closed"
twilio.min.js (line 58)
From:undefined
test (line 3733)
To:undefined
test (line 3734)
Call ended

クライアントの反対側:

    The value "0.6;" for key "initial-scale" was truncated to its numeric prefix.
   test:5 The value "0.5;" for key "minimum-scale" was truncated to its numeric prefix.
   test:5 The key "maximum-scale:0.7;" is not recognized and ignored.
   test:5 Error parsing a meta element's content: ';' is not a valid key-value pair separator. Please use ',' instead.
   test:1845 Client '' is ready
    firebase.js:36 FIREBASE WARNING: 
4

1 に答える 1

2

修理済み!サイトは安全だったので、新しいリクエスト URL を使用して新しい TwiML アプリケーションを作成し、ブラウザ経由で電話を送受信しました。問題を解決するのを手伝ってくれた@philnashに感謝します

于 2016-01-21T11:54:45.717 に答える