|
@ -46,7 +46,7 @@ public class WechatMenuController extends EnvelopRestEndpoint {
|
|
|
WxAccessTokenDO wxAccessTokenDO = wxAccessTokenService.getWxAccessTokenById(wechatId);
|
|
|
String sql = "SELECT content from wx_menu_json WHERE id = 'weixin_menu'";
|
|
|
String params = jdbcTemplate.queryForObject(sql,String.class);
|
|
|
String url = " https://api.weixin.qq.com/cgi-bin/menu/create?access_token=" + wxAccessTokenDO.getAccessToken();
|
|
|
String url = "https://api.weixin.qq.com/cgi-bin/menu/create?access_token=" + wxAccessTokenDO.getAccessToken();
|
|
|
|
|
|
// 请求微信接口创建菜单
|
|
|
String jsonStr = HttpUtil.sendPost(url, params);
|