我可以在 LCDS 服务调用中获取客户端的 IP 地址吗?
当客户端进行特定的 LCDS 服务调用时,我试图找到客户端的 IP 地址。了解了获取“真实”IP 地址和隐私问题等所有问题后,是否有可能找到客户端的 IP 地址?
tj
I'm trying to find the IP address of a client when they make a particular LCDS service call. Understanding all the issues of getting a "real" IP address and privacy concerns and so on, it is possible to find the client's IP address?
tj
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我想你可以很容易地掌握它。
未测试,但尝试一下。
I think you can get hold of it pretty easily.
Not tested, but give it a try.
我没有找到通过简单的方法调用对所有通道类型执行此操作的方法。
所以我使用这样的代码:
I didn't find a way how to do it for all channel types with a simple method call.
So I use such code:
ip = FlexContext.getHttpRequest().getRemoteAddr();
给出了连接者,
谢谢 Roman
ip = FlexContext.getHttpRequest().getRemoteAddr();
is gives whoz connected
Thanks Roman