From db287aac9eb5032b1158b405a9b4807301467ed3 Mon Sep 17 00:00:00 2001
From: zhouxiang <zhouxiang>
Date: 星期四, 24 三月 2022 17:48:03 +0800
Subject: [PATCH] 添加redis获取整个hashKey数据和单个hashKey数据方法

---
 src/main/java/com/hx/util/corp/CorpMpUtil.java |   55 +++++++++++++++++++++++++++++++++++++++++++++++++------
 1 files changed, 49 insertions(+), 6 deletions(-)

diff --git a/src/main/java/com/hx/util/corp/CorpMpUtil.java b/src/main/java/com/hx/util/corp/CorpMpUtil.java
index 98e460b..a10a8dd 100644
--- a/src/main/java/com/hx/util/corp/CorpMpUtil.java
+++ b/src/main/java/com/hx/util/corp/CorpMpUtil.java
@@ -1,9 +1,8 @@
 package com.hx.util.corp;
 
 import com.alibaba.fastjson.JSONObject;
-import com.hx.exception.TipsException;
 import com.hx.util.HttpMethodUtil;
-import com.hx.util.StringUtils;
+import com.hx.util.corp.entity.OpenIdAUserId;
 import com.hx.util.corp.entity.WeiXinInfo;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
@@ -21,7 +20,54 @@
     private static Logger logger = LoggerFactory.getLogger(CorpMpUtil.class.getName());
 
     /**閾炬帴-鑾峰彇搴旂敤accessToken*/
-    public static final String URL_GET_USER_INFO= "https://qyapi.weixin.qq.com/cgi-bin/user/get";
+    public static final String URL_GET_USER_INFO = "https://qyapi.weixin.qq.com/cgi-bin/user/get";
+
+    /**openid杞瑄serid*/
+    public static final String URL_OPENID_TO_USERID = "https://qyapi.weixin.qq.com/cgi-bin/user/convert_to_userid";
+
+    /**userid杞琽penid*/
+    public static final String URL_USERID_TO_OPENID = "https://qyapi.weixin.qq.com/cgi-bin/user/convert_to_openid";
+
+    /**鑾峰彇灏忕▼搴忛摼鎺�*/
+    public static final String URL_USERID_TO_APPLET = "https://api.weixin.qq.com/wxa/generate_urllink";
+
+
+    /**
+     * openId鑾峰彇userId
+     * @param openId 鐢ㄦ埛openId
+     * @return 杩斿洖
+     */
+    public static OpenIdAUserId openIdToUserId(String openId, String token) {
+        Map<String,Object> map=new HashMap<>();
+        map.put("access_token",token);
+
+        JSONObject data = new JSONObject();
+        data.put("openid",openId);
+
+        String datas = HttpMethodUtil.HttpURLUtilJson(URL_OPENID_TO_USERID, data.toString(), map, null, "GET");
+        OpenIdAUserId openIdAUserId = JSONObject.parseObject(datas, OpenIdAUserId.class);
+        return openIdAUserId;
+    }
+
+
+    /**
+     * userId鑾峰彇openId
+     * @param userid 浼佷笟鍛樺伐id
+     * @return 杩斿洖
+     */
+    public static OpenIdAUserId userIdToOpenId(String userid, String token) {
+        Map<String,Object> map=new HashMap<>();
+        map.put("access_token",token);
+
+        JSONObject data = new JSONObject();
+        data.put("userid",userid);
+
+        String datas = HttpMethodUtil.HttpURLUtilJson(URL_USERID_TO_OPENID, data.toString(), map, null, "GET");
+        OpenIdAUserId openIdAUserId = JSONObject.parseObject(datas, OpenIdAUserId.class);
+        return openIdAUserId;
+    }
+
+
 
     /**
      * 鑾峰彇浼佷笟寰俊鍛樺伐淇℃伅
@@ -29,13 +75,10 @@
      * @return 杩斿洖
      */
     public static WeiXinInfo userInfo(String userId, String token) {
-        logger.info("userId:"+userId);
-        logger.info("token:"+token);
         Map<String,Object> map=new HashMap<>();
         map.put("access_token",token);
         map.put("userid",userId);
         String datas = HttpMethodUtil.HttpURLUtilJson(URL_GET_USER_INFO, null, map, null, "GET");
-        logger.info("datas:"+datas);
         WeiXinInfo weiXinInfo = JSONObject.parseObject(datas, WeiXinInfo.class);
         return weiXinInfo;
     }

--
Gitblit v1.8.0