参数说明
获取秘钥
参数 |
必填 |
说明 |
id | 是 | 接口ID |
key | 是 | 对接秘钥 |
name | 是 | 姓名 |
acct_no | 是 | 银行卡号 |
idcard | 否 | 身份证号 |
phone | 否 | 手机号码 |
返回参数
名称 | 说明 |
state |
1:一致; 2:不一致; 3:不一致,认证未通过; 4:认证不一致,该卡今日验证次数过多,请明日再试; 5:认证不一致,当前提交数量过多,请降低提交频率; 6:认证不一致,持卡人信息有误或卡状态异常; 7:认证不一致,未开通无卡支付或发卡行不支持该卡验证; 8:认证不一致,认证受限 |
code |
200:成功; 计费 |
user_info |
用户信息; zid:用户ID; rmb:余额; login_time:最近登录; |
返回示例
{
"code": 200,
"msg": "success",
"data": {
"state": "1"
},
"user_info": {
"zid": "14",
"rmb": "5.97900",
"login_time": "2025-02-24 11:56:32"
}
}
PHP代码示例:
<?php
//GET请求记得用:urldecode
$api_url='https://yuanxiapi.cn/api/';
$api_id='接口ID';
$key='秘钥';
$post_arr=array('id'=>$api_id,'key'=>$key,'phone'=>'参数值');
$post=http_build_query($post_arr);
$data=get_curl($api_url,$post);
print_r($data);
function get_curl($url, $post=0, $referer=0, $cookie=0, $header=0, $ua=0, $nobaody=0, $addheader=0){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
$httpheader[] = "Accept: */*";
$httpheader[] = "Accept-Encoding: gzip,deflate,sdch";
$httpheader[] = "Accept-Language: zh-CN,zh;q=0.8";
$httpheader[] = "Connection: close";
if($addheader){
$httpheader = array_merge($httpheader, $addheader);
}
curl_setopt($ch, CURLOPT_HTTPHEADER, $httpheader);
if ($post) {
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
}
if ($header) {
curl_setopt($ch, CURLOPT_HEADER, true);
}
if ($cookie) {
curl_setopt($ch, CURLOPT_COOKIE, $cookie);
}
if($referer){
if($referer==1){
curl_setopt($ch, CURLOPT_REFERER, 'http://m.qzone.com/infocenter?g_f=');
}else{
curl_setopt($ch, CURLOPT_REFERER, $referer);
}
}
if ($ua) {
curl_setopt($ch, CURLOPT_USERAGENT, $ua);
}
else {
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Linux; U; Android 4.0.4; es-mx; HTC_One_X Build/IMM76D) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0");
}
if ($nobaody) {
curl_setopt($ch, CURLOPT_NOBODY, 1);
}
curl_setopt($ch, CURLOPT_ENCODING, "gzip");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$ret = curl_exec($ch);
curl_close($ch);
return $ret; }
?>