如何获取网络请求的位置?

发布于 2024-10-14 19:39:21 字数 35 浏览 1 评论 0原文

获取网络请求来源位置(国家/地区级别)的最佳方法是什么?

What's the best way to get the location (to a country level) of where a web request is coming from?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情仇皆在手 2024-10-21 19:39:21

一般来说,有 3 种方法:

  • 使用 GeoIP 或一些类似的数据库或服务,将 IP 映射到物理位置
  • 使用 W3C 地理定位 api(仅较新的浏览器支持)
  • Google gears 地理定位

There are 3 ways, generally speaking:

  • Use GeoIP or some similar database or service which maps IPs to physical locations
  • Use the W3C geolocation api (supported by newer browsers only)
  • Google gears geolocation
╰つ倒转 2024-10-21 19:39:21

您可以从标头和 IP 获取位置获取 IP。

用于 Java Web 应用程序。

您可以放置​​一个过滤器来拦截每个请求,

  request.getRemoteAddr();// //will return you

然后有很多服务可用于执行从 IP 到映射到其位置的解析

You can fetch IP from header and from IP get location.

for Java Web App.

You can put a Filter to intercept each request and

  request.getRemoteAddr();// //will return you

then there are lots of service available to perform resolution from IP to map to its location

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文