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.
我想过滤 http 请求并只允许来自我感兴趣的某些域的调用。是否可以将其作为应用程序配置的一部分来执行?- 有任何可用的库吗?
req.connection.remoteAddress将拥有发出请求的系统的 IP 地址;您可以对其进行反向 DNS 查找并与返回的域进行匹配。如果您使用的是 express 或 connect,您可以编写一个中间件函数来执行此操作。
req.connection.remoteAddress