在我的小程序里,留我的微信号
微信小程序里能留微信账号吗?个人小程序求解答
06-09万恶
小程序备案一直显示管局审核中?9月13号收到的短信验证链接,到现在一直显示管局审核中,请尽快处理一下 [图片][图片][图片]
05-27可以申诉,调的话应该不会报漏
我只有前端的功能,不涉及服务器,却要求我识别图片违法?我的小程序只有个前端,有个打开图片的功能,都没有服务器,为什么要求我打开图片要识别违法内容?如果我接入了,那我token不就暴露了
2023-11-01解决了吗
java使用httpPost调用敏感词msg_sec_check无效, result永远是pass?URI uri = new URI("https://api.weixin.qq.com/wxa/msg_sec_check?access_token=" + token);HttpPost httpPost = new HttpPost(uri); httpPost.setHeader(HttpHeaders.CONTENT_TYPE, "application/json;charset=UTF-8"); Map resquestObj = new HashMap<>(); resquestObj.put("content",query); resquestObj.put("version",2); resquestObj.put("scene", 3); resquestObj.put("openid", openid); String jsonStr = JSONUtil.toJsonStr(resquestObj); StringEntity entity = new StringEntity(jsonStr, Charset.forName("UTF-8")); // 设置编码格式 entity.setContentEncoding("UTF-8"); // 发送Json格式的数据请求 entity.setContentType("application/json"); // 创建HTTP客户端,并使用Scanner读取SSE流式数据 CloseableHttpClient httpClient = HttpClients.custom().build(); String response = ""; try { httpPost.setEntity(entity); HttpEntity entity1 = httpClient.execute(httpPost).getEntity(); response = EntityUtils.toString(entity1); }finally { // 关闭Scanner和HTTP客户端 httpClient.close(); } JSONObject entries = JSONUtil.parseObj(JSONUtil.parseObj(response).get("result")); System.err.println(entries.get("suggest")); //这里的结果永远都是pass return "pass".equals(entries.get("suggest").toString());
2023-10-16文字验证正常吗,能用吗?
文本安全识别https://developers.weixin.qq.com/miniprogram/dev/framework/security.msgSecCheck-v1.html 接入完之后使用“特3456书yuuo莞6543李zxcz蒜7782法fgnv级 完2347全dfji试3726测asad感3847知qwez到”这段文本测试返回的是通过啊,这是正常的吗? 参数:wechat-security-request: {openid=xxxxxxx, version=2, content=特3456书yuuo莞6543李zxcz蒜7782法fgnv级 完2347全dfji试3726测asad感3847知qwez到, scene=2} 返回结果:wechat-security-result: {"errcode":0,"result":{"suggest":"pass","label":100},"trace_id":"64c8b31a-0fa60f3b-0e77eae7","errmsg":"ok","detail":[{"errcode":0,"prob":90,"suggest":"pass","label":100,"strategy":"content_model"},{"errcode":0,"strategy":"keyword"}]}
2023-10-15有遇到所有内容,都是通过吗
敏感词问题,4个场景值,我们都测试了,为什么不能屏蔽领导人名字呢?https://developers.weixin.qq.com/minigame/dev/api-backend/open-api/sec-check/security.msgSecCheck.html
2023-10-14你们解决了吗
敏感词检测msg_sec_check无效无论参数content是任何一个敏感词,api返回的errcode都是0,errmsg都是ok,并未起到检测作用
2023-10-13postman ,header设置Content-Type:application/json;charset=UTF-8 调这个接口,也是全部通过
springboot使用restTemplate,调用msg_sec_check 文字验证接口?结果全部通过,怎么办?
2023-10-13id和secret传的正常
stable_token 接口为什么postman能调,微信开发者工具本地就报错43002?43002 require POST method rid: 6527bd5a-4c58fd06-5145b0db wx.request({ url: 'https://api.weixin.qq.com/cgi-bin/stable_token', methods:'post', header: {ContentType:"application/json"}, data:{ "grant_type": "client_credential", "appid": "", "secret": "" }, success:(data)=>{ console.log(111,data); }, fail:(err)=>{ console.log(222,err); } })
2023-10-12腾讯员工,那么高工资,就整的这?测试咋过的
官方文档CanvasContext.fillText有误https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.fillText.html 文档里说是左上角坐标,实测应该是左下角。文档自带的图可以说明这个坐标不应该是左上角了: [图片] 如图,明明设置x,y都是20,但hello的上面明显比右边短一截。这说明fillText的两个参数应该指的是左下角坐标。 为了达到文字左上角坐标为20的效果,需要考虑fontsize的影响,所以需要这么写: [图片] 我不知道是不是文档有误,这个左上角的说法是不准确的,希望官方修改一下。
2021-09-24