jssdk版本是1.6
JSSDK onMenuShareAppMessage这个接口无效?[图片] 初始化都是成功的 [图片] 调用这个onMenuShareAppMessage接口,没反应,也没有出错
10-25已经解决了,谢谢回答的各位大哥!加密算法有问题,我换一种方式就好了!
解密真实姓名或银行卡号出错?这个接口https://pay.weixin.qq.com/wiki/doc/api/tools/mch_pay_yhk.php?chapter=25_2 证书已经下载,公钥已经转PKCS#8 提示:解密真实姓名或银行卡号出错 这要怎么解决,调试了2天 下面是加密代码: public static PublicKey getPublicKey(String publicKeyPath) { try { String key = new String(Files.readAllBytes(Paths.get(publicKeyPath)), "utf-8"); String publicKey = key .replace("-----BEGIN PUBLIC KEY-----", "") .replace("-----END PUBLIC KEY-----", "") .replaceAll("\\s+", ""); KeyFactory kf = KeyFactory.getInstance("RSA"); return kf.generatePublic(new X509EncodedKeySpec(Base64.getDecoder().decode(publicKey))); } catch (Exception ex) { ex.printStackTrace(); return null; } } //公钥加密 public static String encrypt(String content, PublicKey publicKey) { try { // RSA/ECB/OAEPWithSHA-1AndMGF1Padding 微信支付 打款到银行卡 Cipher cipher = Cipher.getInstance("RSA/ECB/OAEPWITHSHA-1ANDMGF1PADDING");//java默认"RSA"="RSA/ECB/PKCS1Padding" cipher.init(Cipher.ENCRYPT_MODE, publicKey); byte[] output = cipher.doFinal(content.getBytes()); BASE64Encoder encoder = new BASE64Encoder(); return encoder.encode(output); } catch (Exception e) { e.printStackTrace(); } return null; }
10-24是不是hash模式下就无解?
出现 realAuthUrl errMsg:config:invalid signature ?[图片] 已确保: 1.签名算法正确,已经过微信工具进行校验 2.前后端用于config的所有参数均一致,没有任何差异 3.access_token和jsapi_ticket均已进行7200秒缓存,失效后自动重新获取并缓存 4.公众号已配置js安全域名(https://applet.chinaant.net),并已配置该域名和后台所在服务器的公网IP白名单 目前怀疑原因: url不正确,但不知道为什么不正确,已参照网上说的方案,前端处理url后进行传递,但仍会出现报错 created() { const script = document.createElement("script"); script.type = "text/javascript"; script.src = "https://res2.wx.qq.com/open/js/jweixin-1.6.0.js"; document.body.appendChild(script); let url = location.href.split("#")[0]; this.$message.toast(url); setTimeout(async () => { let data = await this.$http.quitRequest(this.$app.h5Server + "/jsapi/configJsSdk", {url: encodeURIComponent(url)}); let config = data.list[0]; console.log(config) wx.config({ debug: true, appId: config.appId, // 必填,公众号的唯一标识 timestamp: config.timestamp, // 必填,生成签名的时间戳 nonceStr: config.nonceStr, // 必填,生成签名的随机串 signature: config.signature,// 必填,签名 jsApiList: ["openLocation"], // 必填,需要使用的JS接口列表 openTagList: ["wx-open-launch-weapp"] // 可选,需要使用的开放标签列表,例如['wx-open-launch-app'] }); wx.ready(() => { }); wx.error((res) => { console.log(res) }); }, 100); }
10-08也遇到同样的问题,怎么解决呢? 卡着无法渲染页面
Current Wechat version do not support async?Current Wechat version do not support asynchronous getSystemInfo. "wx.getSystemInfoAsync" will be finished by synchronous implementation. 工具版本最新,基础库:2.33.0 程序内未用getSystemInfo或getSystemInfoAsync getSystemInfoSync
2023-09-14sessionkey的问题也修复了, 网址:https://app.nuodebaozhuang.com 谁能帮忙解决一下
为什么说网页有安全问题呢?只是一个印刷行业报价下单网站,公众号和小程序都的业务域名之类的都设置好了,也备案了,也使用https传输请问是哪里出了问题呢 [图片]
2023-08-242023年6月还没改
一个人微信只能注册绑定5个小程序极不合理我希望微信能尽快开放一个人限制绑定5个小程序的限制。 因为企业可以注册50小程序时,但是一个人只能绑定5个极不合理。无法对账号进行合理的集中管理。 希望同步开放一个微信号同时可以绑定50个小程序。
2023-06-14