You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using JsSIP at RTCWebIt 2 with my own TURN server with authentication.
JsSIP uses the deprecated (but still supported by Chrome) URI form for TURN. This deprecated form doesn't work with Firefox, but the new form works with both Chrome and Firefox.
To fix this just change:
'url': scheme + ':' + server.username + '@' + url.substr(scheme.length+1),
'credential': server.password
I am using JsSIP at RTCWebIt 2 with my own TURN server with authentication.
JsSIP uses the deprecated (but still supported by Chrome) URI form for TURN. This deprecated form doesn't work with Firefox, but the new form works with both Chrome and Firefox.
To fix this just change:
'url': scheme + ':' + server.username + '@' + url.substr(scheme.length+1),
'credential': server.password
to:
'url': scheme + ':' + url.substr(scheme.length+1),
'username': server.username,
'credential': server.password
in RTCSession/RTCMediaHandler.js:init()
Other than this JsSIP seems to work great with both Firefox and Chrome.
The text was updated successfully, but these errors were encountered: