I'm new to this webRTC. I have created a connection between two streams. It's working but when transferring the media streams its throwing this error ICE failed, add a STUN server and see about:webrtc for more details. I have tried like this
peer = new Peer(id, {
debug: 2,
config: {'iceServers': [
{ url: 'stun:stun.l.google.com:19302' },
{ url: 'stun:stun1.l.google.com:19302' },
]}
but still, I'm facing this issue. What is the exact solution for this? @kidandcat
I'm new to this webRTC. I have created a connection between two streams. It's working but when transferring the media streams its throwing this error ICE failed, add a STUN server and see about:webrtc for more details. I have tried like this
peer = new Peer(id, {
debug: 2,
config: {'iceServers': [
{ url: 'stun:stun.l.google.com:19302' },
{ url: 'stun:stun1.l.google.com:19302' },
]}
but still, I'm facing this issue. What is the exact solution for this? @kidandcat