>  기사  >  백엔드 개발  >  PHP 휴대폰 번호 소유권 쿼리 API 인터페이스

PHP 휴대폰 번호 소유권 쿼리 API 인터페이스

伊谢尔伦
伊谢尔伦원래의
2016-11-26 16:33:542510검색

Taobao

API 주소: http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=15850781443
매개변수:

전화: 휴대폰 번호

반환: JSON

Paipai

API 주소: http://virtual.paipai.com/extinfo/GetMobileProductInfo?mobile=15850781443&amount=10000&callname=getPhoneNumInfoExtCallback
매개변수 :

mobile: 휴대폰 번호

callname: 콜백 함수

금액: 알 수 없음(필수)

반환: JSON

금융페이통

API 주소: http://life.tenpay.com/cgi-bin/mobile/MobileQueryAttribution.cgi?chgmobile=15850781443
매개변수:

chgmobile: 휴대폰 번호

반환: xml

바이푸바오

API 주소: https://www.baifubao.com/callback?cmd=1059&callback=phone&phone=15850781443
매개변수:

phone: 휴대전화번호

callback: 콜백 기능

cmd: 알 수 없음(필수)

return: JSON

115

API 주소: http://cz.115.com/?ct=index&ac=get_mobile_local&callback=jsonp1333962541001&mobile=15850781443
매개변수:

모바일: 휴대폰 번호

콜백: 콜백 함수

반환: JSON

Youdao API 인터페이스

인터페이스 주소: http://www.youdao.com/smartresult-xml/search.s?type= mobile&q= 13892101112

매개변수 설명:

유형: 매개변수 휴대폰 위치가 모바일로 고정

q: 휴대폰번호

반환 XML 형식:

d5dae1676a97b6787d147e032b8c858c
8c8e11061c3752eb188d1a0f2e44cafb
75e55dfa86620ce14cce05c1c3eb3c67
cfa41188a9337b35ad6b19691390e82913892101112a2d76080d5c9e776ca66d4fe689baa18
1a998d5166a8f5b2e06a69bcfac38a41산시성 옌안eb393cd7f0c41cf1136847ec1779eae4
1da18c4b98da1fc43a8786f07f99713f
9993d2092ce3d27638638e993603a5e2

또는

http:/ /www .youdao.com/smartresult-xml/search.s?jsFlag=true&type=mobile&q=휴대폰 번호

JSON 형식 반환:

fYodaoCallBack(1, {'product':' mobile', 'phonenum':'13892101112′,'location':'Shaanxi Yan'an'} , ”);

예:

<?php
$mobile = "15018788111";  //要查询的电话号码
$content = get_mobile_area($mobile);
print_r($content);
function get_mobile_area($mobile){
    $sms = array(&#39;province&#39;=>&#39;&#39;, &#39;supplier&#39;=>&#39;&#39;);    //初始化变量
    //根据淘宝的数据库调用返回值
    $url = "http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=".$mobile."&t=".time();
    $content = file_get_contents($url);
    $sms[&#39;province&#39;] = substr($content, "56", "4");  //截取字符串
    $sms[&#39;supplier&#39;] = substr($content, "81", "4");
    return $sms;
}


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.