微信小程序 使用webView 组件 打开微信公众号的H5链接 H5页面 是否能够获取用户授权?:
window.location.href = 'https://open.weixin.qq.com/connect/oauth2/authorize?appid=' + config.mpAppId +'&redirect_uri=' + encodeURIComponent(redirectUrl) + '&response_type=code&scope=' + scope + '&state=STATE#wechat_redirect'
这种静默授权的方式能否获取回调?
或者这种弹框授权能否拉起
window.location.href = 'https://open.weixin.qq.com/connect/oauth2/authorize?appid=' + config.mpAppId +'&redirect_uri=' +encodeURIComponent(redirectUrl) + '&response_type=code&scope=' + scope + '&state=' + (needCode ? 'needCode': 'unNeedCode') + '#wechat_redirect'
功能可以实现,但不知道你代码实际效果了