- 设计蜂巢IP地址查询接口:http://www.hujuntao.com/api/ip/ip.php
- 腾讯IP地址查询接口:http://fw.qq.com/ipaddress
- 新浪IP地址查询接口:http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js
- 搜狐IP地址查询接口:http://pv.sohu.com/cityjson
- 谷歌IP地址查询接口:http://j.maxmind.com/app/geoip.js
- 有道IP地址查询接口:http://www.youdao.com/smartresult-xml/search.s
- 1616 IP地址查询接口:http://w.1616.net/chaxun/iptolocal.php
- 126 http://ip.ws.126.net/ipquery
- hao123 http://app.hao123.com/ipquery/getcity.php?rtype=2
设计蜂巢接口调用方法
API请求地址 : http://www.hujuntao.com/api/ip/ip.php?参数
参数说明:
- IP : IP地址 可选
- format : 输出格式 json 可选 默认为JS
JSON调用示例:
请求地址:http://www.hujuntao.com/api/ip/ip.php?callback=jQuery17107324279078748077_1327024991339&format=json&_=1327024991363
3 |
"province": "\u6c5f\u82cf", |
腾讯接口调用方法
1 |
<script src="http://fw.qq.com/ipaddress"></script> |
2 |
<script type="text/javascript"> |
5 |
console.log(IPData[0]+','+IPData[2]+','+IPData[3]) |
该方法已经不可用,访问http://fw.qq.com/ipaddre显示“The page you are looking for is temporarily unavailable.
Please try again later.”。腾讯对Referer做了判断,虽然可以通过PHP伪造Referer,但是实际测试中获得的是服务器的IP地址而不是客户端的IP地址。我们一起鄙视一下腾讯。╭∩╮(︶︿︶)╭∩╮
新浪接口调用方法
1 |
<script src="http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js"></script> |
2 |
<script type="text/javascript"> |
7 |
console.log(remote_ip_info["country"]+','+remote_ip_info["province"]+"省"+','+remote_ip_info["city"]+"市") |
搜狐接口调用方法
1 |
<script src="http://pv.sohu.com/cityjson?ie=utf-8"></script> |
2 |
<script type="text/javascript"> |
4 |
console.log(returnCitySN["cip"]+','+returnCitySN["cname"]) |
谷歌接口调用方法
据说是谷歌的,不知道是不是真的。
1 |
<script src="http://j.maxmind.com/app/geoip.js"></script> |
2 |
<script type="text/javascript"> |
3 |
console.log(geoip_country_name()+','+geoip_region_name()+','+geoip_city()) |
有道接口调用方法
调用接口示例:http://www.youdao.com/smartresult-xml/search.s?type=ip&q=123.233.157.9
返回XML数据
1 |
<?xml version="1.0" encoding="gbk"?> |
5 |
<location>山东省济南市 网通</location> |
或者
http://www.youdao.com/smartresult-xml/search.s?jsFlag=true&keyfrom=163.com&event=fYodaoCallBack&type=ip&q=192.168.1.1
返回JSON数据
1 |
fYodaoCallBack(1, {‘product’:'ip’,'ip’:’192.168.1.1′,’location’:'局域网 对方和您在同一内部网’} , ”); |