- 微信静默授权回调有延迟, 导致授权码失败?
07-25 12:00:10. https://open.weixin.qq.com/connect/oauth2/authorize 07-26 09:32:17 微信授权才回来,导致授权码无效 {"errcode":40029,"errmsg":"invalid code, rid: 66a2fca1-1a55185c-665da401"} 是什么场景,会出现这种情况?
07-26 - 微信静默授权回调有延迟, 导致授权码失败?
07-25 12:00:10 跳转 https://open.weixin.qq.com/connect/oauth2/authorize 静默授权 07-26 09:32:17 微信授权回调才回调回来,拿着过期的code调用 出现 {"errcode":40029,"errmsg":"invalid code"} 这是什么原因造成?
07-26 - 微信h5纯签约出现页面循环跳转问题?
H5纯签约,已申请特权接口,通过域名访问前端页面,调用后台接口,返回微信给的签约跳转地址,window.location.href后,没有任何错误提示,而且形成了循环访问前端页面,这是什么原因?测试手机是红米的内置浏览器 跳转页面如下: 其中url变量是请求 微信纯签约接口https://api.mch.weixin.qq.com/papay/h5entrustweb返回的redirect_url的链接 <!DOCTYPE html> <html xmlns:th="http://www.thymeleaf.org"> <head> <title>微信支付</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> <meta name="referrer" content="no-referrer-when-downgrade"> <script type="text/javascript" src="/static/lib/jquery-1.11.3.min.js"></script> </head> <body> <input type="hidden" id="url" name="url" th:value="${url}"> <script type="text/javascript"> var url = $("#url").val(); function autoSubmit() { if (url == null || url == "" || url == 'undefined') { return false; } window.location.href = url; } $(function () { autoSubmit(); }); </script> </body> </html>
2023-03-14