0%

NodejsのウェブサーバーでクライアントのIPを受け取る

クライアントのIPを確かめたい!

そういう時はreqの情報をとる

1
2
3
4
5
6
7
router.post('/webtest', function (req, res) {
var reqdata = req.headers['x-forwarded-for'] ||
req.connection.remoteAddress ||
req.socket.remoteAddress ||
req.connection.socket.remoteAddress;
console.log(reqdata);
});