- 小程序跳转视频号主页不需要判断主体吗
https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/channels-profile.html,目前项目上小程序跳转视频号,可以随意跳转个人的视频号,测试结果是无限制,但是文档上说的是有主体限制的,想确认下是否需要主体限制。
2022-01-14 - 支付签名验证失败
APP支付,统一下单成功,APP调起支付报:支付签名验证失败。以前一直是没问题的,最近就一直报这个错误,API支付密钥改了还是没用。签名工具验证也是通过的,谁知道这问题怎么解决???[图片]
2020-07-29 - java调用msgSecCheck接口使用测试字符串测试,测试无效
- 当前 Bug 的表现(可附上截图) [图片] - 预期表现 {"errcode":87014,"errmsg":"内容含有违法违规内容"} - 复现路径 - 提供一个最简复现 Demo jar包: [图片] public static void main(String[] args) { CloseableHttpClient client = HttpClients.createDefault(); String url = "https://api.weixin.qq.com/wxa/msg_sec_check?access_token=22_to3mpu9eWGdL6NGXvFiRHHnq9hXfwwwgUbDZNFmtZBhNIo9WeUsH8K7bkjQOAGvaUx1WD-ZWDETwb6NYxWsS00DH8kk8iVHlq1YijPHSSPK5at4kOP1YIcx7nC0MBYeAJAETQ"; HttpPost httpPost = new HttpPost(url); httpPost.setHeader("Content-Type", "application/json;charset=UTF-8"); Map<String, String> params = new HashMap<>(); params.put("content", "完2347全dfji试3726测asad感3847知qwez到"); String parameter = JSON.toJSONString(params); StringEntity se; String result = null; CloseableHttpResponse response; HttpEntity entity; try { se = new StringEntity(parameter); se.setContentType("text/json"); httpPost.setEntity(se); response = client.execute(httpPost); entity = response.getEntity(); result = EntityUtils.toString(entity, "UTF-8"); System.out.println(result); } catch (UnsupportedEncodingException e) { e.printStackTrace(); } catch (ParseException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } }
2019-06-27