使用 Google 地图数据 API 获取 IP 地址信息,例如国家/地区、经纬度、城市

发布于 2024-08-23 14:35:38 字数 418 浏览 5 评论 0原文

我可以使用 Google 地图数据 API 获取 IP 地址信息,例如国家/地区、经纬度、城市等。结果将采用 JSON 或 XML 格式,我可以通过 C# 解析。是否有用于 Google 地图数据 API 的 C# 库?

我发现了这个有趣的网站 http://www.ipinfodb.com/ip_location_api_json.php

这些人甚至提供了他们的 IP 地址位置数据库 http://ipinfodb.com/ip_database.php

Can I use Google Maps Data API to get the IP Address informations such as Country, LatLong, City, etc. The result will be in JSON or XML format that I can parse through C#. Is there any C# Library for Google Maps Data API?

I found this interesting site
http://www.ipinfodb.com/ip_location_api_json.php

this guys even offer their IP address location database
http://ipinfodb.com/ip_database.php

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

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

发布评论

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

评论(1

成熟稳重的好男人 2024-08-30 14:35:38

描述: http://s.site90.com/api-xml.php

phpcode :

<?
$ip = $_SERVER["REMOTE_ADDR"];// or ex. "92.32.207.124"
$data = simplexml_load_string(file_get_contents("http://s.site90.com/api/xml.php?type=ip&ip=".$ip));
//echo print_r($data);
echo '<img src="data:image/png;base64,'.utf8_decode($data->ip->countryimage->attributes()->small).'"> '.utf8_decode($data->ip->location->attributes()->city).' ('.utf8_decode($data->ip->location->attributes()->region).')';
?>

Description: http://s.site90.com/api-xml.php

phpcode:

<?
$ip = $_SERVER["REMOTE_ADDR"];// or ex. "92.32.207.124"
$data = simplexml_load_string(file_get_contents("http://s.site90.com/api/xml.php?type=ip&ip=".$ip));
//echo print_r($data);
echo '<img src="data:image/png;base64,'.utf8_decode($data->ip->countryimage->attributes()->small).'"> '.utf8_decode($data->ip->location->attributes()->city).' ('.utf8_decode($data->ip->location->attributes()->region).')';
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文