微信用户授权完毕后不跳转指定的redirect_uri
我的做法是在扫码后,controller中return "redirect:https://open.weixin.qq.com/connect/oauth2/authorize?appid="+appid+
"&redirect_uri="+ URLDecoder.decode("http://xxx.xxx.xxx.xxx/test/getOpenId","UTF-8") +"&response_type=code&scope=snsapi_base&state=dbb#wechat_redirect"
这时候页面快速闪过“正在登陆中...”,然而并没有跳转到我指定的链接“http://xxx.xxx.xxx.xxx/test/getOpenId”。
我是使用的微信公众号的测试平台账号,其中“OAuth2.0网页授权”也已经将“xxx.xxx.xxx.xxx”配置进去了,一头雾水不知道怎么玩了。请大家帮帮忙
以下是部分代码:
扫码重定向的代码: [图片] 接收回调的方法: [图片]