企业工商信息模糊版接口如何对接?(二)

一、什么是企业工商信息模糊查询

输入社会统一信用代码/公司名称/注册号任意一个信息,查询相关企业的工商信息:包括公司名称、法定代表人、成立时间、登记状态、企业信用代码等。

二、企业工商信息模糊查询适用哪些场景?

比如:求职应聘参考

(1)求职者在寻找就业机会时,可能对某些企业有模糊的印象,但不确定准确名称。通过模糊查询相关信息,如企业所在地区、行业领域等,可以找到一系列符合条件的企业。然后查看这些企业的规模、经营状况等,判断是否有合适的岗位以及企业的发展前景。比如,一名求职者想在上海的金融行业找工作,通过模糊查询“上海”和“金融”,能获取上海金融企业的名单,进一步了解其招聘信息和企业实力,为求职提供更多选择。

(2)对于猎头公司来说,在为客户寻找合适的高端人才时,需要先对相关行业的企业进行梳理。利用模糊查询可以快速定位到目标行业的企业,了解其人才需求和企业特点,以便更精准地推荐合适的人才。例如,猎头公司要为一家大型互联网企业寻找高级算法工程师,通过模糊查询“互联网”相关关键词,找到大量互联网企业,分析其对算法工程师的需求情况,从而更好地完成人才匹配。

三、如何利用Java实现企业工商信息模糊查询?

以阿里云服务商快证API为例,该接口支持4种语言:

	public static void main(String[] args) {
	    String host = "https://kzgsmhv1.market.alicloudapi.com";
	    String path = "/api/company_search/query";
	    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("keyword", "keyword");
	    bodys.put("pageNum", "pageNum");
	    bodys.put("pageSize", "pageSize");


	    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();
	    }
	}

正确返回示例:

	public static void main(String[] args) {
	    String host = "https://kzgsmhv1.market.alicloudapi.com";
	    String path = "/api/company_search/query";
	    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("keyword", "keyword");
	    bodys.put("pageNum", "pageNum");
	    bodys.put("pageSize", "pageSize");


	    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();
	    }
	}

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值