有道是一个好公司,提供了好几个非常好的免费API,这里介绍:IP地址查询、手机号码归属地查询、身份证查询、邮编、区号、城市名查询。
这几个接口都是以URL GET方式提交参数,以XML的形式返回查询结果
查询IP地址:
http://www.youdao.com/smartresult-xml/search.s?type=ip&q=IP地址
举例:http://www.youdao.com/smartresult-xml/search.s?type=ip&q=123.233.157.9
返回:
<?xml version="1.0" encoding="gbk"?>
<smartresult>
<product type="ip">
<ip>123.233.157.9</ip>
<location>山东省济南市 网通</location>
</product>
</smartresult>
查询手机号码归属地:
http://www.yodao.com/smartresult-xml/search.s?type=mobile&q=手机号
举例:http://www.yodao.com/smartresult-xml/search.s?type=mobile&q=13892101111
返回:
<?xml version="1.0" encoding="gbk"?>
<smartresult>
<product type="mobile">
<phonenum>13892101111</phonenum>
<location>陕西 延安</location>
</product>
</smartresult>
查询身份证信息:
http://www.yodao.com/smartresult-xml/search.s?type=id&q=身份证号码
举例:http://www.youdao.com/smartresult-xml/search.s?type=id&q=370782196402121133
返回:
<?xml version="1.0" encoding="gbk"?>
<smartresult>
<product type="identitycard">
<code>370782196402121133</code>
<location>山东省潍坊市诸城市</location>
<birthday>19640212</birthday>
<gender>m</gender>
</product>
</smartresult>
邮编、区号、城市名查询城市信息:
http://www.yodao.com/smartresult-xml/search.s?type=zip&q=邮编或区号或城市名
举例:http://www.youdao.com/smartresult-xml/search.s?type=zip&q=武汉
注:此时从输入框获取城市名需要:java.net.URLEncoder.encode(cityName,"UTF-8");当为汉字的时候不处理直接访问会得不到数据。
返回:
<?xml version="1.0" encoding="gbk"?>
<smartresult>
<product type="zipcode">
<province>湖北省</province>
<city>武汉市</city>
<location>湖北省 武汉市</location>
<phone>027</phone>
<zipcode>430000</zipcode>
</product>
</smartresult>
举例:http://www.youdao.com/smartresult-xml/search.s?type=zip&q=021
返回:
<?xml version="1.0" encoding="gbk"?>
<smartresult>
<product type="zipcode">
<province></province>
<city>上海市</city>
<location>上海市</location>
<phone>021</phone>
<zipcode>200000</zipcode>
</product>
</smartresult>