今天推荐免费测试身份核验API类接口,可以免费试用,记得点赞收藏哈!
接口名称:身份证二要素
接口用途:输入姓名、身份证号,校验此两项是否匹配,同时返回生日、性别、籍贯等信息。
首先打开阿里云,点击身份证实名验证接口,选择购买免费试用。
然后点击卖家控制台,获取APPcode进行调试接口。
public static void main(String[] args) {
String host = "https://kzidcardv1.market.alicloudapi.com";
String path = "/api-mall/api/id_card/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("name", "name");
bodys.put("idcard", "idcard");
如果成功调用,返回200
标签:String,示例,demo,接口,API,put,new,HashMap From: https://blog.csdn.net/loosenivy/article/details/140406616