互億無線 · 文檔中心

銀行卡四要素 - 代碼示例


php對接銀行卡信息核驗接口DEMO示例
本文為您提供了php語言版本的銀行卡四要素核驗對接DEMO示例

銀行卡四要素接口文檔 點擊下載

銀行卡四要素接入指南 點擊訪問


// 接口類型:互億無線實名認證接口
// 賬戶注冊:https://user.ihuyi.com/register.html
// 注意事項:
// DEMO僅作參考

header("Content-type:text/html; charset=UTF-8");

function Post($curlPost,$url){
		$curl = curl_init();
		curl_setopt($curl, CURLOPT_URL, $url);
		curl_setopt($curl, CURLOPT_HEADER, false);
		curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
		curl_setopt($curl, CURLOPT_NOBODY, true);
		curl_setopt($curl, CURLOPT_POST, true);
		curl_setopt($curl, CURLOPT_POSTFIELDS, $curlPost);
		$return_str = curl_exec($curl);
		curl_close($curl);
		return $return_str;
}

$account = 'APPID';
$password = 'APPKEY';
$app = 'bank4';//固定值
$name = '張三';
$id_card_no = '123456789012345678';
$mobile = '13600000000';
$bank_card_no = '637556789';
$time = time();
$password = md5($account.$password.$app.$name.$id_card_no.$mobile.$bank_card_no.$time);

$target = "https://api.ihuyi.com/idcard/Submit.json";
$post_data = "account=".$account."&password=".$password."&app=".$app."&name=".$name."&id_card_no=".$id_card_no."&mobile=".$mobile."&bank_card_no=".$bank_card_no."&time=".$time;

//密碼可以使用明文密碼或使用32位MD5加密
$res =  Post($post_data, $target);
$res_json = json_decode($res,true);

print_r($res_json);

if($res_json['code']==2){
	echo "提交成功";
}

if($res_json['result']['status']==2){
	echo "認證通過";
}

現(xiàn)在注冊,即享新用戶禮包!

在線咨詢
電話咨詢

服務熱線:

4008 808 898

服務熱線(工作時間):

4008 808 898

業(yè)務咨詢(非工作時間):

售后咨詢(非工作時間):

驗證碼已發(fā)送到您的手機,請查收!

輸入驗證碼后,點擊“開通體驗賬戶”按鈕可立即開通體驗賬戶。

收不到短信驗證碼?
互億無線不提供接碼服務,接碼用戶請勿點擊開通按鈕。
×