您好,登錄后才能下訂單哦!
這篇文章主要介紹“php如何實(shí)現(xiàn)三網(wǎng)手機(jī)實(shí)名制認(rèn)證”,在日常操作中,相信很多人在php如何實(shí)現(xiàn)三網(wǎng)手機(jī)實(shí)名制認(rèn)證問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”php如何實(shí)現(xiàn)三網(wǎng)手機(jī)實(shí)名制認(rèn)證”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!
實(shí)現(xiàn)方法:1、申請(qǐng)開(kāi)通申請(qǐng)三網(wǎng)手機(jī)實(shí)名認(rèn)證API接口,獲取API請(qǐng)求KEY;2、用“$params=compact('key','realname','idcard','mobile','showid')”組合請(qǐng)求參數(shù);3、通過(guò)“function juhecurl($url,$params=false,$ispost=0){...}”方式發(fā)出請(qǐng)求,處理數(shù)據(jù)并返回結(jié)果即可。
基于PHP的三網(wǎng)手機(jī)實(shí)名認(rèn)證API接口調(diào)用示例
申請(qǐng)三網(wǎng)手機(jī)實(shí)名認(rèn)證API接口
通過(guò) https://www.juhe.cn/docs/api/id/208?s=cpphpcn
自助申請(qǐng)開(kāi)通接口,獲取API請(qǐng)求KEY
請(qǐng)求參數(shù)
名稱 | 必填 | 說(shuō)明 |
---|---|---|
key | 是 | 在個(gè)人中心->我的數(shù)據(jù),接口名稱上方查看 |
realname | 是 | 姓名 |
idcard | 是 | 身份證號(hào)碼 |
mobile | 是 | 手機(jī)號(hào)碼 |
type | 否 | 1:返回手機(jī)運(yùn)營(yíng)商,不輸入及其他值則不返回 |
showid | 否 | 1:返回聚合訂單號(hào),不輸入及其他值則不返回 |
province | 否 | 1:返回手機(jī)號(hào)歸屬地,province,city,不輸入不返回 |
detail | 否 | 是否顯示匹配詳情碼,傳1顯示,默認(rèn)不顯示(簡(jiǎn)版情況下輸入1的時(shí)候,固定返回24) |
PHP示例代碼
如需請(qǐng)求加密接口
$apiurl="http://v.juhe.cn/telecom/query";//請(qǐng)求地址
$key = "";//32位的KEY
$realname = "";//真實(shí)姓名
$idcard="";//身份證號(hào)碼
$mobile="";//手機(jī)號(hào)碼
$showid=1;//傳入返回單號(hào)
$params=compact('key','realname','idcard','mobile','showid');//組合請(qǐng)求參數(shù)
$content=juhecurl($apiurl,$params);//獲取接口返回內(nèi)容json字符串
$result = json_decode($content,true);//解析成數(shù)組
if($result){
if($result['error_code']=='0'){
echo $result['result']['res'].':'.$result['result']['resmsg'];
#print_r($result);
}else{
echo $result['error_code'].":".$result['reason'];
}
}else{
echo "請(qǐng)求失敗";
}
//網(wǎng)絡(luò)請(qǐng)求方法
function juhecurl($url,$params=false,$ispost=0){
$httpInfo = array();
$ch = curl_init();
curl_setopt( $ch, CURLOPT_HTTP_VERSION , CURL_HTTP_VERSION_1_1 );
curl_setopt( $ch, CURLOPT_CONNECTTIMEOUT , 3);
curl_setopt( $ch, CURLOPT_TIMEOUT , 8);
curl_setopt( $ch, CURLOPT_RETURNTRANSFER , true );
if ($params) {
if (is_array($params)) {
$paramsString = http_build_query($params);
} else {
$paramsString = $params;
}
} else {
$paramsString = "";
}
if( $ispost )
{
curl_setopt( $ch , CURLOPT_POST , true );
curl_setopt( $ch , CURLOPT_POSTFIELDS , $paramsString);
curl_setopt( $ch , CURLOPT_URL , $url );
}
else
{
if($paramsString ){
curl_setopt( $ch , CURLOPT_URL , $url.'?'.$paramsString);
}else{
curl_setopt( $ch , CURLOPT_URL , $url);
}
}
$response = curl_exec( $ch );
if ($response === FALSE) {
//echo "cURL Error: " . curl_error($ch);
return false;
}
$httpCode = curl_getinfo( $ch , CURLINFO_HTTP_CODE );
$httpInfo = array_merge( $httpInfo , curl_getinfo( $ch ) );
curl_close( $ch );
return $response;
}
返回結(jié)果示例
{
"reason": "查詢成功",
"result": {
"realname": "***",
"mobile": "***********",
"idcard": "******************",
"res": 2,
"resmsg": "三要素身份驗(yàn)證不一致",
"type": "移動(dòng)",
"orderid":"J201712251904163782Ay",
"province":"廣東省",
"city" : "惠州市",
"rescode":"24"
},
"error_code": 0
}
到此,關(guān)于“php如何實(shí)現(xiàn)三網(wǎng)手機(jī)實(shí)名制認(rèn)證”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。