如何测试地理位置标识符功能?

发布于 2024-10-24 12:15:51 字数 102 浏览 1 评论 0原文

我刚刚使用 GEO IP API 实现了 GEO 位置标识符?...您能否建议如何测试此功能...我在纽约...当我打开该网站时,它向我显示纽约...但我不知道如何检查其他城市...请建议。

I have jut implemented the GEO location identifier using the GEO IP API?... could you please suggest how to test this feature... i am in new york... when i open up the site, its showing me th New York... But i don't know how to check for other cities... Please suggest.

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

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

发布评论

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

评论(3

我做我的改变 2024-10-31 12:15:52

您应该能够使用代理服务测试其他位置。

You should be able to test other locations with a proxy service.

临风闻羌笛 2024-10-31 12:15:52

getCurrentPosition()第二个参数失败情况的回调。在第三个参数中,您可以设置浏览器应等待响应的秒数(在我的示例中为 5 秒)以及结果应缓存多长时间(在我的示例中为 1 小时)。

navigator.geolocation.getCurrentPosition(function(position) {
    alert('Success');
}, function() {
    alert('Fail!!!');
}, {maximumAge:60000, timeout: 5000});

The second parameter for getCurrentPosition() is a callback for the failure case. In the third parameter you can set for how many seconds the browser should wait for a response (in my example 5 sec) and how long the result should be cached (in my example 1 h).

navigator.geolocation.getCurrentPosition(function(position) {
    alert('Success');
}, function() {
    alert('Fail!!!');
}, {maximumAge:60000, timeout: 5000});
我是有多爱你 2024-10-31 12:15:52

尝试使用代理服务器或出于测试目的可以尝试在应用程序中对不同地理位置的 IP 进行硬编码。有关公共代理列表,请检查以下链接。
http://hidemyass.com/proxy-list/1

Try using proxy server or for testing purpose can try to hardcode ip's of different geographical locations in your application. For list of public proxies, check the below link.
http://hidemyass.com/proxy-list/1

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