|
@@ -275,7 +275,7 @@ public class OrderPayOpsServiceImpl implements OrderPayOpsService {
|
|
|
String wxMpOAuth2AccessTokenUrl = String.format(ConfigInit.wxMpOAuth2AccessTokenUrl, hfMerchantConfig.getWxAppId(), hfMerchantConfig.getWxAppSecret(), code);
|
|
|
Map<String, String> weChatRes = JSON.parseObject(HttpUtil.get(wxMpOAuth2AccessTokenUrl, new HashMap<>()), Map.class);
|
|
|
if (!weChatRes.containsKey("openid")) {
|
|
|
- log.warn("获取微信openId失败:[{}]",JsonUtil.toJSONString(weChatRes));
|
|
|
+ log.error("获取微信openId失败:[{}]",JsonUtil.toJSONString(weChatRes));
|
|
|
throw new BizException("授权失败,请重新授权");
|
|
|
}
|
|
|
openId = weChatRes.get("openid");
|