我尝试过的是: (ps x是下面的数字) 1.无效的IP提供的客户端:卸载Chrome->更新至旧版本:71.0.3578.80 64bit (获得的有效IP例如1x2.1x.2.x1)
代码:
//compatibility for firefox and chrome
var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
var pc = new myPeerConnection({
iceServers: []
}),
noop = function() {},
localIPs = {},
ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
key;
function iterateIP(ip) {
if (!localIPs[ip]) onNewIP(ip);
localIPs[ip] = true;
}
//create a bogus data channel
pc.createDataChannel("");
// create offer and set local description
pc.createOffer().then(function(sdp) {
sdp.sdp.split('\n').forEach(function(line) {
if (line.indexOf('candidate') < 0) return;
line.match(ipRegex).forEach(iterateIP);
});
pc.setLocalDescription(sdp, noop, noop);
}).catch(function(reason) {
// An error occurred, so handle the failure to connect
});
//listen for candidate events
pc.onicecandidate = function(ice) {
return ice.candidate.candidate; // comment below, as it will return nothing as the ip does not match the ipRegex
// if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
// ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
// };
}
// Usage
getUserIP(function(ip){
alert("Got IP! :" + ip);
});
我希望甚至可以将最新版本的chrome(75.0.3770.100 64bit)更新为所有客户都可以提供有效的ip
答案 0 :(得分:1)
在iceServers
配置中使用stun / turn服务器ips /域,而不是空的,例如{ "iceServers": [ { urls: 'stun:stun.l.google.com:19302' } ] }
。当客户端位于不同的网络上时,必须使用电击/转弯服务器。
答案 1 :(得分:0)
我找到了一种解决方法,让用户ip在更新最新的chrome后可以发送回服务器:
答案 2 :(得分:0)
这不是错误,可以预料,因为将来您将无法以这种方式获取地址。
WebRTC主机候选者现在将使用随机的mDNS主机名进行匿名处理,以防止网站转移WebRTC来监听本地IPv4地址。该行为已逐渐为所有Chrome用户启用。它也在Firefox中实现。
以下是Chromium和Firefox的相应错误,以及WebRTC mDNS候选者的当前IETF draft。