利用Java调用运营商二要素接口示例
一、什么是运营商二要素接口?
运营商二要素验证,也叫手机二要素验证,指的是三大电信业务运营商(移动、联通、电信)对用户身份信息进行认证。使用运营商二要素验证时,需要提供用户的姓名和手机号码。应用系统会调用接口,将上述认证要素提交给实名认证服务器,再调用运营商的相关信息系统接口进行认证,最后返回认证结果。
二、运营商二要素应用场景有哪些?
1.金融信贷领域的风控审核:通过核验申请用户的姓名、身份证号、手机号是否一致,判断其身份的真实性,从源头规避潜在欺骗风险;
2.网络平台注册验证:对网络平台新注册用户进行核验,保证用户身份的真实性,避免羊毛党和不法分子的注册,扰乱平台正常秩序。
三、下面利用Java实现接口调用:
接口地址:https://market.aliyun.com/apimarket/detail/cmapi00066586#sku=yuncode6058600002
调用地址:https://kzmobile2.market.alicloudapi.com/api-mall/api/mobile_two/check
public static void main(String[] args) {
String host = "https://kzmobile2.market.alicloudapi.com";
String path = "/api-mall/api/mobile_two/check";
String method = "POST";
String appcode = "你自己的AppCode";
Map<String, String> headers = new HashMap<String, String>();
//最后在header中的格式(中间是英文空格)为Authorization:APPCODE 83359fd73fe94948385f570e3c139105
headers.put("Authorization", "APPCODE " + appcode);
//根据API的要求,定义相对应的Content-Type
headers.put("Content-Type", "application/x-www-form-urlencoded; charset=UTF-8");
Map<String, String> querys = new HashMap<String, String>();
Map<String, String> bodys = new HashMap<String, String>();
bodys.put("mobile", "mobile");
bodys.put("name", "name");
try {
/**
* 重要提示如下:
* HttpUtils请从
* https://github.com/aliyun/api-gateway-demo-sign-java/blob/master/src/main/java/com/aliyun/api/gateway/demo/util/HttpUtils.java
* 下载
*
* 相应的依赖请参照
* https://github.com/aliyun/api-gateway-demo-sign-java/blob/master/pom.xml
*/
HttpResponse response = HttpUtils.doPost(host, path, method, headers, querys, bodys);
System.out.println(response.toString());
//获取response的body
//System.out.println(EntityUtils.toString(response.getEntity()));
} catch (Exception e) {
e.printStackTrace();
}
}
调用成功返回示例:
{
"msg": "成功",
"success": true,
"code": 200,
"data": {
"result": "0", //0一致 ,1不一致,2库无或销户
"orderNo": "202406282055560705659",
"desc": "一致"
}
}
原文地址:https://blog.csdn.net/loosenivy/article/details/140620589
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!