Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在heroku上使用socket.io,在socket连接上我想获取客户端IP,目前我得到的IP不是真实IP(我认为这是heroku的IP)。
我正在使用 socket.manager.handshaken[socket.id].address.address 来获取用户的 ip .. 你还有其他方法吗?
尝试:
socket.manager.handshaken[socket.id].remoteAddress
如果您需要客户端端口,那将是: socket.manager.handshaken[socket.id].remotePort
socket.manager.handshaken[socket.id].remotePort