网易有道IP,身份证号, 手机号归属地API查询接口
http://www.youdao.com/smartresult-xml/search.s?type=ip&q=ip地址
GET后返回XML数据, 包含原IP及归属地.
此外type还可以: mobile(手机号), id(身份证). 尚未发现有限制
网易有道mobile(手机号):
http://www.youdao.com/smartresult-xml/search.s?type=mobile&q=手机号码
网易有道id(身份证):
http://www.youdao.com/smartresult-xml/search.s?type=id&q=身份证号
附上PHP代码吧:
function ip_location($ip) {
$u = "http://www.youdao.com/smartresult-xml/search.s?type=ip&q={$ip}";
$r = utility::HttpRequest($u);
preg_match("#<location>(.+)</location>#Ui", $r, $m);
return strval($m[1]);
}