main.js:141 Uncaught DOMException: Failed to construct 'RTCPeerConnection': 'stun:stun.l.google.com:19302?transport=udp' is not a valid stun or turn URL.
时间: 2024-03-31 11:32:05 浏览: 143
Uncaught DOMException:
这个错误提示是说在创建RTCPeerConnection时传入的 STUN 服务器的URL格式不正确。正确的格式应该是以 "stun:" 或 "turn:" 开头,接着是服务器的IP地址或域名,最后是端口号和可选参数,例如 "stun:stun.example.com:3478"。你需要检查代码中传入的STUN服务器的URL是否符合规范。如果不确定正确的URL,可以尝试使用其他可用的STUN服务器,例如 "stun:stun1.l.google.com:19302"。
阅读全文