后#微信网页授权两种模式:
参考链接(请在微信客户端中打开此链接体验):
scope为snsapi_base
scope为snsapi_userinfo
尤其注意:跳转回调redirect_uri,应当使用https链接来确保授权code的安全性。
具体见 微信文档
重定向地址不能带#如下
https://baidu.com/#/?P=adsada 这种地址经微信重定向后,会将后面的参数丢掉,微信重定向地址会变为:https://baidu.com/?code=asaasdas
正确写法:https://baidu.com/?P=asdabsdjas 重定向后就是正常的:https://baidu.com/?P=asdabsdjas&code=askljlkjlkj
https://open.weixin.qq.com/connect/oauth2/authorize?appid=wxf0e81c3bee622d60&redirect_uri=http%3A%2F%2Fnba.bluewebgame.com%2Foauth_response.php&response_type=code&scope=snsapi_userinfo&state=STATE#wechat_redirect可以后天获取code吗
https://open.weixin.qq.com/connect/oauth2/authorize?appid=wxf0e81c3bee622d60&redirect_uri=http%3A%2F%2Fnba.bluewebgame.com%2Foauth_response.php&response_type=code&scope=snsapi_userinfo&state=STATE#wechat_redirect
这个scope=snsapi_userinfo需要用户授权登录的文档例子,我用微信打开后无法跳转到授权界面,而是一个白色界面啥都没有,是因为现在OAuth2.0不通过http的鉴权了,只能用https了么?
那前端岂不是不能使用hash模式路由了?