实名认证二要素查询调用阿里接口

import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import org.apache.http.HttpResponse;
import org.apache.http.util.EntityUtils;

import java.util.HashMap;
import java.util.Map;

/**author xxx
 * @version 1.0
 * Created by Administrator on 2017/11/2.
 */
public class IdCardCheck {
    public static JSONObject IdCardCheck(String certificationName, String cardId) {
        String host = "http://1.api.apistore.cn";
        String path = "/idcard";
        String method = "GET";
        String appcode = "申请你自己的appcode";//在阿里云上面购买实名认证2要素接口以后就可以获得
        Map<String, String> headers = new HashMap<String, String>();
        //最后在header中的格式(中间是英文空格)Authorization:APPCODE 
        headers.put("Authorization", "APPCODE " + appcode);
        Map<String, String> querys = new HashMap<String, String>();
        querys.put("cardNo", cardId);
        querys.put("realName", certificationName);
        HttpResponse response = null;
        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
             */
            response =  HttpUtils.doGet(host, path, method, headers, querys);
            JSONObject jsonObject = JSON.parseObject(EntityUtils.toString(response.getEntity()));
            JSONObject json = JSONObject.parseObject(String.valueOf(jsonObject));
            JSONObject result= (JSONObject) json.get("result");
            return result;
        } catch (Exception e) {
            e.printStackTrace();
        }
        return new JSONObject();
    }

    public static void main(String[] args) {
        IdCardCheck.IdCardCheck("张三", "输入你查的身份证号");

        System.out.println(IdCardCheck.IdCardCheck("张三", "输入你查的身份证号"));
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值