1、背景
由于某些原因要前端来直接写微信重定向地址
2、隐患
微信ios传过去的地址不是后台appid配置的地址,导致签名出错,不能调用微信提供sdk
3、解决方案
获取url时不用 url = window.location.href
改为: url = window.location.origin + window.location.pathname
然后重定向写法改为
window.location.replace(`https://open.weixin.qq.com/connect/oauth2/authorize?appid=${appid}&redirect_uri=${url}&response_type=code&scope=snsapi_userinfo&state=123#wechat_redirect`)