- 小程序用户换了地区就无法使用,网络连接有误。之前本人在重庆正常使用,现在到了广西就不行。这是咋回事?
小程序用户换了地区就无法使用,网络连接有误。之前本人在重庆正常使用,现在到了广西就不行 [图片]
2022-02-11 - 微信小程序用户地区就无法连接网络,打不开是怎么回事?之前用户在重庆可以正常使用,现在去了广西无法使用
微信小程序用户地区就无法连接网络,打不开是怎么回事?之前用户在重庆可以正常使用,现在去了广西无法使用,以下为小程序码 [图片]
2022-02-11 - 企业付款到零钱怎么设置几分钱?
企业付款到零钱怎么设置几分钱,就像拼多多那种 [图片]
2021-10-25 - java后台生成带参数小程序二维码图片错误,看不了是什么回事?(检查了APPID跟secret没错)
[图片] //生成二维码 @RequestMapping("createMySmallCode") @ResponseBody public static String createMySmallCode(Long shopId, HttpServletRequest request) { Result result = null; String path = null; String returnPath = null; String url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=" + WeiXinPayConfig.xcx_appid + "&secret=" + WeiXinPayConfig.xcx_secret; Map
resMap = new HashMap<>(); try { String resultStr = HttpClientUtil.doGet(url, resMap); Map map = JsonMapUtil.jsonToMap(resultStr); String accessToken = map.get("access_token"); String urlC = "https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token=" + accessToken; Map param = new HashMap(); param.put("width", 420); param.put("scene", shopId);//设置的参数,小程序端可获取 param.put("page", "/pages/pay/pay"); MultiValueMap headers = new LinkedMultiValueMap(); RestTemplate rest = new RestTemplate(); HttpEntity requestEntity = new HttpEntity(param, headers); ResponseEntitybyte[]> entity = rest.exchange(urlC, HttpMethod.POST, requestEntity, byte[].class, new Object[0]); byte[] data = (byte[]) entity.getBody(); String filepath = "/home/sys/upload/shopCode/file/"; File file = new File(filepath); if (!file.exists()) { file.mkdirs(); } long currtime = System.currentTimeMillis(); path = filepath + currtime + ".jpg"; returnPath = currtime + ".jpg"; FileImageOutputStream imageOutput = new FileImageOutputStream(new File(path)); imageOutput.write(data, 0, data.length); imageOutput.close(); } catch (Exception var23) { var23.printStackTrace(); } return request.getContextPath() + path; } 2020-08-20 - 小程序上线发布后搜索不到?
[图片] [图片]
2020-08-07