Heim >Backend-Entwicklung >PHP-Tutorial >通过淘宝IP地址库获取IP位置

通过淘宝IP地址库获取IP位置

WBOY
WBOYOriginal
2016-07-25 09:07:091202Durchsuche
通过淘宝开发的IP地址查询获取IP对应的地区 。
不是原创,只是转帖;淘宝的ip地址库应该算是有权威性的,并且淘宝提供了很便捷的接口方式,大家也不用为了获取ip信息而发愁了。
  1. 1. 请求接口(GET):
  2. http://ip.taobao.com/service/getIpInfo.php?ip=[ip地址字串]
  3. 2. 响应信息:
  4. (json格式的)国家 、省(自治区或直辖市)、市(县)、运营商
  5. 3. 返回数据格式:
  6. {"code":0,"data":{"ip":"210.75.225.254","country":"\u4e2d\u56fd","area":"\u534e\u5317",
  7. "region":"\u5317\u4eac\u5e02","city":"\u5317\u4eac\u5e02","county":"","isp":"\u7535\u4fe1",
  8. "country_id":"86","area_id":"100000","region_id":"110000","city_id":"110000",
  9. "county_id":"-1","isp_id":"100017"}}
  10. 其中code的值的含义为,0:成功,1:失败。
复制代码


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn