3
我有我的WebRTC配置多個服務器輪流重啓的WebRTC呼叫:如何當一個TURN服務器宕機
iceServers: [
{
urls: 'turn:turn.example.com',
username: 'username',
credential: 'pass'
},
{
urls: 'turn:turn2.example.com',
username: 'username',
credential: 'pass'
}
]
當我開始的WebRTC呼叫,然後打倒turn.example.com
通信凍結。 WebRTC似乎沒有自動選擇新的ICE候選人並恢復通話。
有沒有辦法使用第二臺ICE服務器恢復/重新建立通訊?
謝謝,我發現這裏https://developer.mozilla.org/en-US/docs/Web/API/WebRTC_API/Session_lifetime#ICE_restart更多信息。似乎是唯一的方式去atm。 –