|
@@ -70,7 +70,7 @@ public class WeChatUtil {
|
|
|
.append(wxPayProperties.getMpAppId())
|
|
|
.append("&redirect_uri=")
|
|
|
.append(URLEncoder.encode(wxPayProperties.getRedirectUrl(), "UTF-8"))
|
|
|
-// .append(URLEncoder.encode("https://test.baoxianzhanggui.com/fragrance/#/pages/my/wxLogin", "UTF-8"))
|
|
|
+// .append(URLEncoder.encode("https://city.baoxianzhanggui.com/fragrance/#/pages/my/wxLogin", "UTF-8"))
|
|
|
.append("&response_type=code&scope=snsapi_userinfo&state=")
|
|
|
.append("STATE")
|
|
|
.append("#wechat_redirect");
|
|
@@ -308,7 +308,7 @@ public class WeChatUtil {
|
|
|
|
|
|
String url = " https://api.weixin.qq.com/cgi-bin/menu/create?access_token=" + token;
|
|
|
|
|
|
- String param = "{\"button\":[{\"type\":\"view\",\"name\":\"立即下单\",\"url\":\"https://test.baoxianzhanggui.com/fragrance/\"},{\"type\":\"view\",\"name\":\"查看技师\",\"url\":\"https://test.baoxianzhanggui.com/fragrance/#/pages/identify/identify\"},{\"name\":\"更多\",\"sub_button\":[{\"type\":\"view\",\"name\":\"技师招募\",\"url\":\"https://test.baoxianzhanggui.com/fragrance/#/pages/join/first_join\"},{\"type\":\"view\",\"name\":\"招商合作\",\"url\":\"https://test.baoxianzhanggui.com/fragrance/#/pages/join/teamwork\"},{\"type\":\"view\",\"name\":\"投诉举报\",\"url\":\"https://test.baoxianzhanggui.com/fragrance/#/pages/join/feedback\"},{\"type\":\"view\",\"name\":\"了解我们\",\"url\":\"https://test.baoxianzhanggui.com/fragrance/#/pages/join/understand\"}]}]}";
|
|
|
+ String param = "{\"button\":[{\"type\":\"view\",\"name\":\"立即下单\",\"url\":\"https://city.baoxianzhanggui.com/fragrance/\"},{\"type\":\"view\",\"name\":\"查看技师\",\"url\":\"https://city.baoxianzhanggui.com/fragrance/#/pages/identify/identify\"},{\"name\":\"更多\",\"sub_button\":[{\"type\":\"view\",\"name\":\"技师招募\",\"url\":\"https://city.baoxianzhanggui.com/fragrance/#/pages/join/first_join\"},{\"type\":\"view\",\"name\":\"招商合作\",\"url\":\"https://city.baoxianzhanggui.com/fragrance/#/pages/join/teamwork\"},{\"type\":\"view\",\"name\":\"投诉举报\",\"url\":\"https://city.baoxianzhanggui.com/fragrance/#/pages/join/feedback\"},{\"type\":\"view\",\"name\":\"了解我们\",\"url\":\"https://city.baoxianzhanggui.com/fragrance/#/pages/join/understand\"}]}]}";
|
|
|
String rs = HttpUtil.post(url, param);
|
|
|
Map<?, ?> map = JSONObject.parseObject(rs, Map.class);
|
|
|
|
|
@@ -332,7 +332,7 @@ public class WeChatUtil {
|
|
|
cn.hutool.json.JSONObject param1 = JSONUtil.createObj();
|
|
|
param1.put("touser", openid);
|
|
|
param1.put("template_id", templateId);
|
|
|
- param1.put("url", "https://test.baoxianzhanggui.com/fragrance/");
|
|
|
+ param1.put("url", "https://city.baoxianzhanggui.com/fragrance/");
|
|
|
param1.put("data", data);
|
|
|
String result = HttpUtil.post(url, param1.toString());
|
|
|
|