springsecurity oauth 绑定社交账号QQ时报错

发布于 2022-09-07 23:11:09 字数 954 浏览 26 评论 0

使用springsecurity oauth 社交绑定qq、微信时,POST请求地址:/connect/qq 时报错,如何解决?

//这里的type = "qq"
gotoBind(type){
            let url = `${this.$url}/connect/${type}`;
            axios({
            method: 'post',
            url: url
            });
        },
Failed to load https://graph.qq.com/oauth2.0/authorize?client_id=101492493&response_type=code&redirect_uri=https%3A%2F%2Fapi.xfindzp.com%2Fconnect%2Fqq&state=0a227fcc-fc98-49bf-8ccd-de30996dd223: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access.
createError.js?16d0:16 Uncaught (in promise) Error: Network Error
    at createError (createError.js?16d0:16)
    at XMLHttpRequest.handleError (xhr.js?ec6c:87)

clipboard.png

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岁月流歌 2022-09-14 23:11:09

graph.qq.com/oauth2.0不能通过axios直接调用,会遇到跨域问题,一般是通过浏览器跳转的方式,把oauth2登录后的参数获取到,然后在服务器端通过回传的参数去获取用户的数据,再与session里的用户做绑定。
axios无法处理跳转(status=302)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文