一、什么是企业三要素?
企业三要素即传入的企业名称、法人名称、社会统一信用代码或注册号,校验此三项是否一致。
二、具体怎么样通过Java实现接口调用?
下面我们以阿里云接口为例,通过Java示例代码进行调用;
接口地址:https://market.aliyun.com/apimarket/detail/cmapi00068871?#sku=yuncode6287100001
public static void main(String[] args) {String host = "https://kzcpthree.market.alicloudapi.com";String path = "/company_three/check";String method = "POST";String appcode = "你自己的AppCode";Map<String, String> headers = new HashMap<String, String>();//最后在header中的格式(中间是英文空格)为Authorization:APPCODE 83359fd73fe94948385f570e3c139105headers.put("Authorization", "APPCODE " + appcode);//根据API的要求,定义相对应的Content-Typeheaders.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("creditCode", "creditCode");bodys.put("companyName", "companyName");bodys.put("legalPerson", "legalPerson");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": 2, //1一致,2不一致"orderNo": "202412012048184836138","companyName": true, //true 正确, false 错误"legalPerson": false,"creditNo": true}
}