springsecurity oauth 绑定社交账号QQ时报错
使用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)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
graph.qq.com/oauth2.0
不能通过axios直接调用,会遇到跨域问题,一般是通过浏览器跳转的方式,把oauth2登录后的参数获取到,然后在服务器端通过回传的参数去获取用户的数据,再与session里的用户做绑定。axios无法处理跳转(status=302)