你想反馈一个 Bug 还是 提一个需求?
如果是 Bug:
* Bug 表现是什么?预期表现是什么?
* 如何复现?
* 提供一个最简复现 Demo
如果是需求:
* 你希望有什么能力?
* 你需要这个能力的场景是 ?
String apiUrl = "https://api.weixin.qq.com"; // 微信请求服务器
String url = new StringBuffer(apiUrl).append("/wxa/getwxacodeunlimit?access_token=").append(weChat.getWeChatToken().getAccessToken()).toString();
HttpHeaders httpHeaders = new HttpHeaders();
//设置请求参数
Map<String, Object> map = new LinkedHashMap<>();
map.put(Const.WeChat.SCENE, "111111" );
map.put(Const.WeChat.PATH, "page/index/index" ) ;
map.put(Const.WeChat.WIDTH, 430);
map.put(Const.WeChat.AUTO_COLOR, true);
HttpEntity<Map<String, Object>> entity = new HttpEntity<>(map, httpHeaders);
return restTemplate.exchange(url, HttpMethod.POST, entity, byte[].class);