|
免費(fèi)手機(jī)號(hào)碼歸屬地API查詢接口和php使用實(shí)例分享
最近在做全國性的行業(yè)分類信息網(wǎng)站,需要用到手機(jī)號(hào)歸屬地顯示功能,于是就穿梭于各大權(quán)威站點(diǎn)之間偷來了API的接口地址。 分享出來,大家可以用到就拿去呵。
一、淘寶網(wǎng)API
復(fù)制代碼 代碼如下:API地址: http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=15850781443
參數(shù):
tel:手機(jī)號(hào)碼
返回:JSON
二、拍拍API
復(fù)制代碼 代碼如下:API地址: http://virtual.paipai.com/extinfo/GetMobileProductInfo?mobile=15850781443&amount=10000&callname=getPhoneNumInfoExtCallback
參數(shù):
mobile:手機(jī)號(hào)碼
callname:回調(diào)函數(shù)
amount:未知(必須)
返回:JSON
三、財(cái)付通API
復(fù)制代碼 代碼如下:API地址: http://life.tenpay.com/cgi-bin/mobile/MobileQueryAttribution.cgi?chgmobile=15850781443
參數(shù):
chgmobile:手機(jī)號(hào)碼
返回:xml
四、百付寶API
復(fù)制代碼 代碼如下:API地址: https://www.baifubao.com/callback?cmd=1059&callback=phone&phone=15850781443
參數(shù):
phone:手機(jī)號(hào)碼
callback:回調(diào)函數(shù)
cmd:未知(必須)
返回:JSON
五、115API
復(fù)制代碼 代碼如下:API地址: http://cz.115.com/?ct=index&ac=get_mobile_local&callback=jsonp1333962541001&mobile=15850781443
參數(shù):
mobile:手機(jī)號(hào)碼
callback:回調(diào)函數(shù)
返回:JSON
六、有道api接口
復(fù)制代碼 代碼如下:接口地址:http://www.youdao.com/smartresult-xml/search.s?type=mobile&q=13892101112
參數(shù)說明:
type : 參數(shù)手機(jī)歸屬地固定為mobile
q : 手機(jī)號(hào)碼
返回XML格式:
<?xml version="1.0" encoding="gbk"?>
<smartresult>
<product type="mobile">
<phonenum>13892101112</phonenum>
<location>陜西 延安</location>
</product>
</smartresult>
或者
http://www.youdao.com/smartresult-xml/search.s?jsFlag=true&type=mobile&q=手機(jī)號(hào)碼
返回JSON格式:
fYodaoCallBack(1, {‘product':'mobile','phonenum':'13892101112′,'location':'陜西 延安'} , ”);
php調(diào)用淘寶API實(shí)例:
復(fù)制代碼 代碼如下:<?php
$mobile = "15018788111"; //要查詢的電話號(hào)碼
$content = get_mobile_area($mobile);
print_r($content);
function get_mobile_area($mobile){
$sms = array('province'=>'', 'supplier'=>''); //初始化變量
//根據(jù)淘寶的數(shù)據(jù)庫調(diào)用返回值
$url = "http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=".$mobile."&t=".time();
$content = file_get_contents($url);
$sms['province'] = substr($content, "56", "4"); //截取字符串
$sms['supplier'] = substr($content, "81", "4");
return $sms;
}
其它的API可以自由發(fā)揮哦。
php技術(shù):免費(fèi)手機(jī)號(hào)碼歸屬地API查詢接口和PHP使用實(shí)例分享,轉(zhuǎn)載需保留來源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請第一時(shí)間聯(lián)系我們修改或刪除,多謝。