一、申请接口 通过https://www.juhe.cn/docs/api/id/213自助申请开通短信API,获得接口请求Key。(目前接口暂只支持企业类用户使用) 二、PHP请求代码示例 // 请求的接口URL $apiUrl =
通过https://www.juhe.cn/docs/api/id/213自助申请开通短信API,获得接口请求Key。(目前接口暂只支持企业类用户使用)
// 请求的接口URL
$apiUrl = 'Http://v.juhe.cn/verifybankcard4/query';
// 请求参数
$params = [
'realname' => 'xxx', // 姓名
'idcard' => 'xxx', // 身份证号码
'bankcard' => 'xxx', // 银行卡号
'mobile' => 'xxx', // 手机号码
'key' => 'xxx', // 接口调用key,通过聚合平台申请开通
];
$paramsString = http_build_query($params);
// 发起接口请求
$response = juheHttpRequest($apiUrl, $paramsString, 1);
// 处理接口返回结果,根据自身业务逻辑修改处理
$paramstring = http_build_query($params);
$content = juheHttpRequest($apiUrl, $paramstring, 1);
$result = JSON_decode($content, true);
if ($result) {
if ($result['error_code'] == 0) {
// 请求成功,根据自身业务逻辑修改处理
$res = $result['result']['res'];
if ($res == '1') {
// 信息核验一致
echo "信息核验一致";
} else {
// 信息核验不一致
echo "信息核验不一致";
}
} else {
// 请求异常,根据自身业务逻辑修改处理
echo "{$result['error_code']}:{$result['reason']}" . php_EOL;
}
} else {
//可能网络异常等问题请求失败,根据自身业务逻辑修改处理
echo "请求失败";
}
function juheHttpRequest($url, $params = false, $ispost = 0)
{
$httpInfo = [];
$ch = curl_init();
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
curl_setopt($ch, CURLOPT_USERAGENT, 'JUHE API');
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 3);
curl_setopt($ch, CURLOPT_TIMEOUT, 12);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
if ($ispost) {
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
curl_setopt($ch, CURLOPT_URL, $url);
} else {
if ($params) {
curl_setopt($ch, CURLOPT_URL, $url . '?' . $params);
} 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;
}
详细请求参数和返回参数格式说明,请参考官方接口文档:https://www.juhe.cn/docs/api/id/213
--结束END--
本文标题: 基于聚合数据的银行卡四元素校验API接口调用示例-PHP版
本文链接: https://lsjlt.com/news/99260.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0