|
@@ -58,6 +58,32 @@ public class UserServiceImpl extends ServiceImpl<OrderMapper, Order> implements
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
+ public String getWxAccessToken(ToolWxConfig wxConfig, String code){
|
|
|
+ //获取当前的openid
|
|
|
+ Map hashMap = new HashMap();
|
|
|
+ hashMap.put("appid", wxConfig.getAppId());
|
|
|
+ hashMap.put("secret", wxConfig.getAppSecret());
|
|
|
+ hashMap.put("js_code", code);
|
|
|
+ hashMap.put("grant_type", "client_credential");
|
|
|
+ String json = HttpUtil.get(WxApiType.WX_LOGIN_URL.getValue(), hashMap);
|
|
|
+ JSONObject jsonObject = JSONUtil.parseObj(json);
|
|
|
+ log.info("json:{}",jsonObject);
|
|
|
+ String access_token = jsonObject.getStr("access_token");
|
|
|
+ return access_token;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUserPhoneNumber(ToolWxConfig wxConfig, String code){
|
|
|
+ String token = getWxAccessToken(wxConfig, code);
|
|
|
+ //获取当前的openid
|
|
|
+ Map hashMap = new HashMap();
|
|
|
+ hashMap.put("access_token", token);
|
|
|
+ String json = HttpUtil.post(WxApiType.WX_LOGIN_URL.getValue(), hashMap);
|
|
|
+ JSONObject jsonObject = JSONUtil.parseObj(json);
|
|
|
+ log.info("json:{}",jsonObject);
|
|
|
+ String access_token = jsonObject.getStr("access_token");
|
|
|
+ return access_token;
|
|
|
+ }
|
|
|
+
|
|
|
public UserInfo getMyInfo(UserParam userParam){
|
|
|
UserInfo userInfo = new UserInfo();
|
|
|
userInfo.setId("1");
|