‘linchangsheng’ vor 2 Wochen
Ursprung
Commit
acddebfde2

+ 4 - 1
src/main/java/com/gree/mall/miniapp/logic/common/WechatLogic.java

@@ -76,6 +76,9 @@ public class WechatLogic {
     @Autowired
     RedisUtil redisUtil;
 
+    @Value("${wechat.sub.appid}")
+    private String wechatSubAppid;
+
     public WxPayService getPayService(String companyWechatId){
         return WxConfiguration.wxPayServices.get(companyWechatId);
     }
@@ -110,7 +113,7 @@ public class WechatLogic {
      */
     public String getAccessToken(String companyWechatId){
         try {
-            return this.getMaService(companyWechatId).getAccessToken();
+            return this.getMaService(wechatSubAppid).getAccessToken();
         }catch(Exception e){
             log.error("获取微信token失败",e);
         }

+ 5 - 1
src/main/java/com/gree/mall/miniapp/logic/user/UserLogic.java

@@ -29,6 +29,7 @@ import me.chanjar.weixin.cp.bean.WxCpUser;
 import org.apache.commons.lang3.StringUtils;
 import org.springframework.beans.BeanUtils;
 import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
 import org.springframework.integration.redis.util.RedisLockRegistry;
 import org.springframework.stereotype.Service;
 import org.springframework.transaction.annotation.Transactional;
@@ -83,6 +84,9 @@ public class UserLogic {
     @Autowired
     AdminWebsitService adminWebsitService;
 
+    @Value("${wechat.sub.appid}")
+    private String wechatSubAppid;
+
     /**
      * 微信授权
      *
@@ -354,7 +358,7 @@ public class UserLogic {
         if (null == user) {
             throw new RemoteServiceException("用户信息为空" + userId);
         }
-        WxMaService maService = wechatLogic.getMaService(currentCompanyWechat.getCompanyWechatId());
+        WxMaService maService = wechatLogic.getMaService(wechatSubAppid);
         WxMaPhoneNumberInfo phoneNoInfo = maService.getUserService().getPhoneNoInfo(user.getSessionKey(), encryptedData, iv);
         String mobile = phoneNoInfo.getPhoneNumber();
         if(StringUtils.isEmpty(mobile)){