问题解决了吗
设置了网页授权域名,一直报redirect_uri与后台配置不一致1003?公众号管理后台已经设置了网页授权域名、js安全域名、业务域名,用作扫码后跳转公众号授权登录支付,这是跳转地址https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx0b5a570ce9460f6c&redirect_uri=https%253A%252F%252Fdevgate.huagonghuo.com%2Fech-payment%2Fv1%2Fpayment%2Fipay%2Fwechat%2Fgz%2Fredirect&response_type=code&scope=snsapi_base&state=UN202107061814362#wechat_redirect ps:域名用的是内网穿透的,还是一直提示redirect_uri安全域名与后台配置不一致1003?这是怎么回[图片][图片]
2022-07-08需要使用异步的方式获取状态
web-view的h5中使用wx.miniProgram.getEnv获取小程序环境获取不到?在h5中判断是否是小程序环境,开发版中调试可以正常打开页面,在体验版中获取不到小程序环境页面打不开 iswxorapipay () { var ua = window.navigator.userAgent.toLowerCase(); var iswxmini = '' if (ua.indexOf('micromessenger') > -1) { window.wx.miniProgram.getEnv(function (res) { if (res.miniprogram) { // 小程序环境下逻辑 // alert('在小程序中') iswxmini = 'iswxmini' } else { // 非小程序环境下逻辑 } }) return iswxmini }else if (ua.indexOf('alipay') > -1){ return 'alipay' } },
2022-05-09