手机,IP地址,身份证查询接口

时间:2024-03-08 19:58:37

摘自网络各处收藏,将其整理,希望对以后的自己有帮助。

1、查询手机:http://www.yodao.com/smartresult-xml/search.s?type=mobile&q=手机号码

2、查询IP:http://www.yodao.com/smartresult-xml/search.s?type=ip&q=IP地址

3、查询身份证:http://www.yodao.com/smartresult-xml/search.s?type=id&q=身份证号码

这三个是返回xml文档,只需要通过相应解析就能得到需要的数据,第二个,如果加上jsFlag这个参数,就代表需要返回json数据,解析json数据比xml应该要简单吧,所以,看例子如下,上面三种通用哦~

http://www.youdao.com/smartresult-xml/search.s?jsFlag=true&type=ip&q=58.32.210.242

返回:

updateCall(1, {\'product\':\'ip\',\'ip\':\'58.32.210.242\',\'location\':\'上海市 电信ADSL\'} , \'\');

去掉jsFlag:http://www.youdao.com/smartresult-xml/search.s?type=ip&q=58.32.210.242

返回:

<?xml version="1.0" encoding="GBK"?>
<smartresult>
<product type="ip">
<ip>58.32.210.242</ip>
<location>上海市 电信ADSL</location>
</product>
</smartresult>