免費手機號碼歸屬地API查詢介面和PHP使用執行個體分享

來源:互聯網
上載者:User

 最近在做全國性的行業分類資訊網站,需要用到手機號歸屬地顯示功能,於是就穿梭於各大權威網站之間偷來了API的介面地址。 分享出來,大家可以用到就拿去呵

免費手機號碼歸屬地API查詢介面和PHP使用執行個體分享 最近在做全國性的行業分類資訊網站,需要用到手機號歸屬地顯示功能,於是就穿梭於各大權威網站之間偷來了API的介面地址。 分享出來,大家可以用到就拿去呵。   一、淘寶網API   代碼如下:API地址: http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=15850781443 參數: tel:手機號碼 返回:JSON  二、拍拍API   代碼如下:API地址: http://virtual.paipai.com/extinfo/GetMobileProductInfo?mobile=15850781443&amount=10000&callname=getPhoneNumInfoExtCallback 參數: mobile:手機號碼 callname:回呼函數 amount:未知(必須) 返回:JSON  三、財付通API  代碼如下:API地址: http://life.tenpay.com/cgi-bin/mobile/MobileQueryAttribution.cgi?chgmobile=15850781443 參數: chgmobile:手機號碼 返回:xml  四、百付寶API   代碼如下:API地址: https://www.baifubao.com/callback?cmd=1059&callback=phone&phone=15850781443 參數: phone:手機號碼 callback:回呼函數 cmd:未知(必須) 返回:JSON  五、115API   代碼如下:API地址: http://cz.115.com/?ct=index&ac=get_mobile_local&callback=jsonp1333962541001&mobile=15850781443 參數: mobile:手機號碼 callback:回呼函數 返回:JSON   六、有道api介面   代碼如下:介面地址:http://www.youdao.com/smartresult-xml/search.s?type=mobile&q=13892101112 參數說明: type : 參數手機歸屬地固定為mobile q : 手機號碼 返回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=手機號碼 返回JSON格式: fYodaoCallBack(1, {‘product':'mobile','phonenum':'13892101112′,'location':'陝西 延安'} , ”);    PHP調用淘寶API執行個體:  代碼如下:<?php $mobile = "15018788111";  //要查詢的電話號碼 $content = get_mobile_area($mobile); print_r($content);  function get_mobile_area($mobile){     $sms = array('province'=>'', 'supplier'=>'');    //初始設定變數     //根據淘寶的資料庫調用傳回值     $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可以自由發揮哦。
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.