Commit f2cd40e6 authored by shiyu's avatar shiyu

getMenu4

parent 26f6a7db
...@@ -297,6 +297,12 @@ public class OfficialAccountApi { ...@@ -297,6 +297,12 @@ public class OfficialAccountApi {
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
} }
String url3 = "https://api.weixin.qq.com/cgi-bin/get_current_selfmenu_info" + "?access_token=" + token;
OkHttpUtil okHttpUtil3 = OkHttpUtil.builder().url(url3);
okHttpUtil3.get();
String responseStr3 = okHttpUtil3.async();
logger.info("getMenu接口返回原文3333 :{}", responseStr3);
return Result.success(map); return Result.success(map);
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment