springsecurity 企业微信登入的实现示例-亚博电竞手机版
背景
后台系统需要接入 企业微信登入,满足企业员工快速登入系统
流程图
简单代码说明
自定义一套 springsecurity 认证逻辑
主要就是 根据code 获取绑定用户信息 然后返回登入 token ,和qq ,微信 等第 3方登入 一个套路
// 自定义 wechatauthenticationprovider public class wechatauthenticationprovider implements authenticationprovider { private userdetailsservice userdetailsservice; public wechatauthenticationprovider(userdetailsservice userdetailsservice){ this.userdetailsservice = userdetailsservice; } @override public authentication authenticate(authentication authentication) throws authenticationexception { wechatauthenticationtoken authenticationtoken = (wechatauthenthttp://www.cppcns.comicationtoken) authentication; string userid = (string) authenticationtoken.getprincipal(); userdetails userdetails = userdetailsservice.loaduserbyusername(userid); // 此时鉴权成功后,应当重新 new 一个拥有鉴权的 authenticationresult 返回 browserauthenticationtoken authenticationresult = new browserauthenticationtoken(userdetails, userdetails.getauthorities()); authenticationresult.setdetails(authenticationtoken.getdetails()); return authenticationresult; } @override public boolean supports(class authentication) { // 判断 authentication 是不是 smscodeauthenticationtoken 的子类或子接口 return wechatauthenticationtoken.class.isassignablefrom(authentication); } public userdetailsservice getuserdetailsservice() { return userdetailsservice; } public void setuserdetailsservice(userdetailsservice userdetailsservice) { this.userdetailsservice = userdetailsservice; } } // 重写 userdetailsservice @override public userdetails loaduserbyusername(string code) throws usernamenotfoundexception { string wechatuserid = wechatservice.getwechatuserid(code); lambdaquerywrapper
到此这篇关于springsecurity 企业微信登入的实http://www.cppcns.com现示例的文章就介绍到这了,更多相关springsecurity 企业微信登入内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!