- 微信公众号H5授权登录,卡在登录中没有回调!之前是好的,突然就不行了?
跳转的链接: https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx2aea7cdee87d736a&redirect_uri=http%3a%2f%2fzxxh01.jbore.cn%2fHome%2fOauthlogin%3fReturnUrl%3d&response_type=code&scope=snsapi_base&state=STATE#wechat_redirect url显示的链接 https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx2aea7cdee87d736a&redirect_uri=http%3a%2f%2fzxxh01.jbore.cn%2fHome%2fOauthlogin%3fReturnUrl%3d&response_type=code&scope=snsapi_base&state=STATE&uin=Mjc4MDMxMjg2MA%3D%3D&key=eb5d8e6fc7560933887fae1bef3f1b4e49c17eb924c081ac245a4ca11c517f63483b87f8adcb99c548bbefeae45344c8&pass_ticket=r+3qwIYIJn5bwb7h+YCey3wkYMOBM8FAAAs89LZ7JECcXJ2Jl/EajN4e2wUKTi2HLoMCBFDeEHi5nxt8u4bbCA== 没有提示,没有报错,也没有回调,就停止在授权登录页面
2022-04-29 - 企业付款到零钱,运营账户有钱,一直提示余额不足?
企业付款到零钱已开通,两个账户都有钱。商户平台使用可以,api调用不行一直提示余额不足,收付款是同一个商户号
2021-04-23 - wx-open-launch-weapp没有跳转按钮?
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="http://res2.wx.qq.com/open/js/jweixin-1.6.0.js"></script> </head> <body> <h1>Hello World No.2</h1> <wx-open-launch-weapp id="launch-btn" weappid="gh_86a146d9c3e4" path="pages/index/index.html"> <template> <style>.btn { padding: 12px }</style> <button class="btn">打开小程序</button></template> </wx-open-launch-weapp> <script> wx.config({ debug: false, // 调试时可开启 appId: , timestamp: , // 必填,填任意数字即可 nonceStr:// 必填,填任意非空字符串即可 signature: , // 必填,填任意非空字符串即可 jsApiList: ['onMenuShareTimeline'], openTagList: ['wx-open-launch-weapp'] }); wx.ready(function () { var btn = document.getElementById('launch-btn'); btn.addEventListener('launch', function (e) { alert("success"); }); btn.addEventListener('error', function (e) { alert(e.detail); }); }); wx.error(function (res) { console.log('res', res); }); </script> </body> </html> 用的是政府认证号但就是没有按钮显示,返回也是OK的
2021-02-19