一、什么是运营商三要素?
运营商三要素接口一般用于核验姓名、身份证号、手机号是否一致。它是电信运营商基于留存的实时数据,设计成 API 接口的形式,为有相关运营商查询核验需求的用户提供接入服务。
二、以下是运营商三要素接口常见的使用场景:
1.金融服务:在开户、贷款、申请信用卡等金融服务中,用于对用户进行身份认证,确保用户信息的真实性,有效防止信息冒用,提高金融服务的安全性。
2.电商平台:用户在账户注册、登录、找回密码等操作时,可通过该接口进行身份认证,确保用户资料的真实性,使用户操作更加顺畅。
3.互联网平台:在用户注册时验证其身份的真实性,避免出现不良用户行为,比如发布虚假信息、欺诈等。社交平台等可以借此快速、准确地核实用户身份,有效维护平台的安全性。
4.其他领域:还可应用于物流配送、酒店预订、在线教育、游戏等多种场景,以确保用户的真实身份和信息安全。
接口地址:https://market.aliyun.com/apimarket/detail/cmapi00066757?spm=5176.shop.result.10.3046719295CK5k
public static void main(String[] args) {
String host = "https://kzmobilev2.market.alicloudapi.com";
String path = "/api/mobile_three/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");
bodys.put("idcard", "idcard");
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": "一致"
}
}
标签:Java,String,三要素,接口,用户,put,bodys,com
From: https://blog.csdn.net/loosenivy/article/details/140748321