網(wǎng)易有道IP,身份證號(hào), 手機(jī)號(hào)歸屬地API查詢接口 http://www.youdao.com/smartresult-xml/search.s?type=ip&q=ip地址 GET后返回XML數(shù)據(jù), 包含原IP及歸屬地. 此外type還可以: mobile(手機(jī)號(hào)), id(身份證). 尚未發(fā)現(xiàn)有限制 網(wǎng)易有道m(xù)obile(手機(jī)號(hào)): http://www.youdao.com/smartresult-xml/search.s?type=mobile&q=手機(jī)號(hào)碼 網(wǎng)易有道id(身份證): http://www.youdao.com/smartresult-xml/search.s?type=id&q=身份證號(hào) 附上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]); } 網(wǎng)易有道IP,身份證號(hào),手機(jī)號(hào)歸屬地API查詢接口還不錯(cuò)吧,xml格式,當(dāng)然這些接口很多,你也可以換其他的。
發(fā)表評(píng)論