2023-03-11 分類(lèi): 網(wǎng)站建設(shè)
可見(jiàn),有身份證實(shí)名認(rèn)證、運(yùn)營(yíng)商三要素、銀行卡三四要素、人證核驗(yàn)、人像比對(duì)。
這個(gè)人證核驗(yàn)接口是收費(fèi)的,價(jià)格是0.4元每次。
操作步驟:
1、進(jìn)入創(chuàng)藍(lán)API開(kāi)放平臺(tái)后臺(tái),獲取APPID和APPKEY
2、調(diào)用接口
$url = 'API地址';
$params = [
'appId' => 'xxx', // appId,登錄萬(wàn)數(shù)平臺(tái)查看
'appKey' => 'xxx', // appKey,登錄萬(wàn)數(shù)平臺(tái)查看
'liveImage' => '', // 活體檢測(cè)的自拍照片。imageType為URL時(shí),傳入照片的網(wǎng)絡(luò)URL地址, 支持jpg/png/bmp格式,imageType為BASE64時(shí),傳入照片的base64字符編碼,base64字符串不包含data:image前綴,且圖片大小不能大于2M 'idCardImage' => '', // 身份證照片,請(qǐng)確保身份證內(nèi)容信息清晰可見(jiàn),imageType為URL時(shí),傳入照片的網(wǎng)絡(luò)URL地址,imageType為BASE64時(shí),傳入照片的base64字符編碼,base64字符串不包含data:image前綴,且圖片大小不能大于2M 'imageType' => '', // 圖片類(lèi)型,枚舉值:URL-圖片路徑;BASE64 –圖片BASE64編碼 ];
$ch = curl_init(); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($params));
curl_setopt($ch, CURLOPT_TIMEOUT, 5);
$result = curl_exec($ch);
var_dump($result);
exit;
我對(duì)此進(jìn)行了封裝,如下圖
request_post函數(shù)如下
function request_post($url = '', $post_data = array()) {
if (empty($url) || empty($post_data)) {
return false;
}
$o = "";
foreach ($post_data as $k => $v) {
$o.= "$k=" . urlencode($v) . "&";
}
$post_data = substr($o, 0, -1);
$postUrl = $url;
$curlPost = $post_data;
$ch = curl_init(); //初始化curl
curl_setopt($ch, CURLOPT_URL, $postUrl); //抓取指定網(wǎng)頁(yè)
curl_setopt($ch, CURLOPT_HEADER, 0); //設(shè)置header
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //要求結(jié)果為字符串且輸出到屏幕上
curl_setopt($ch, CURLOPT_POST, 1); //post提交方式
curl_setopt($ch, CURLOPT_POSTFIELDS, $curlPost);
$data = curl_exec($ch); //運(yùn)行curl
curl_close($ch);
return $data;
}
網(wǎng)站名稱(chēng):Thinkphp5.1使用創(chuàng)藍(lán)API接口進(jìn)行實(shí)名認(rèn)證-人證核驗(yàn)
文章網(wǎng)址:http://www.rwnh.cn/news49/243299.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信小程序、網(wǎng)站設(shè)計(jì)公司、網(wǎng)站改版、全網(wǎng)營(yíng)銷(xiāo)推廣、虛擬主機(jī)、面包屑導(dǎo)航
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容