我的Chrome扩展程序需要知道它运行的计算机的IP是什么(真实世界的IP)有没有简单的方法呢?
答案 0 :(得分:3)
你总是可以使用freegeoip服务,我最喜欢的实现之一就是如下:
var geoip = function(data){
if (data.region_name.length > 0) {
console.log('Your external IP:', data.ip);
}
}
var el = document.createElement('script');
el.src = 'http://freegeoip.net/json/?callback=geoip';
document.body.appendChild(el);
答案 1 :(得分:2)
是的,但由于NAT,如果没有网络请求,您无法知道。您可以尝试我为同一任务制作的http://external-ip.appspot.com/
答案 2 :(得分:1)
YES!您可以通过WebRTC API获取本地网络的IP地址。 您可以将此API用于任何Web应用程序,而不仅仅是Chrome扩展程序。
<script>
function getMyLocalIP(mCallback) {
var all_ip = [];
var RTCPeerConnection = window.RTCPeerConnection ||
window.webkitRTCPeerConnection || window.mozRTCPeerConnection;
var pc = new RTCPeerConnection({
iceServers: []
});
pc.createDataChannel('');
pc.onicecandidate = function(e) {
if (!e.candidate) {
mCallback(all_ip);
return;
}
var ip = /^candidate:.+ (\S+) \d+ typ/.exec(e.candidate.candidate)[1];
if (all_ip.indexOf(ip) == -1)
all_ip.push(ip);
};
pc.createOffer(function(sdp) {
pc.setLocalDescription(sdp);
}, function onerror() {});
}
getMyLocalIP(function(ip_array) {
document.body.textContent = 'My Local IP addresses:\n ' + ip_array.join('\n ');
});
<body> Output here... </body>
希望它有所帮助!