获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
楼主,请问你的问题最后是怎么解决的呢?我也遇到了相似的问题,授权之后页面不跳转。
微信用户授权完毕后不跳转指定的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”配置进去了,一头雾水不知道怎么玩了。请大家帮帮忙 以下是部分代码: 扫码重定向的代码: [图片] 接收回调的方法: [图片]
2023-08-01