spring boot实现微信扫码登录功能流程分析-亚博电竞手机版

目录

  • 1. 授权流程说明
    • 第一步:请求code
    • 第二步:通过code获取access_token
    • 第三步:通过access_token调用接口
  • 2. 授权流程代码
  • 3. 用户登录和登出
  • 4. spring aop校验用户有没有登录
  • 5. 拦截登录校验不通过抛出的异常

微信开放平台:微信扫码登录功能

官方文档:https://developers.weixin.qq.com/doc/oplatform/website_app/wechat_login/wechat_login.html

1. 授权流程说明

微信oauth3.0授权登录让微信用户使用微信身份安全登录第三方应用或网站,在微信用户授权登录已接入微信oauth3.0的第三方应用后,第三方可以获取到用户的接口调用凭证(access_token),通过access_token可以进行微信开放平台授权关系接口调用,从而可实现获取微信用户基本开放信息和帮助用户实现基础开放功能等。

微信oauth3.0授权登录目前支持authorization_code模式,适用于拥有server端的应用授权。该模式整体流程为:

① 第三方发起微信授权登录请求,微信用户允许授权第三方应用后,微信会拉起应用或重定向到第三方网站,并且带上授权临时票据code参数;

② 通过code参数加上appid和appsecret等,通过api换取access_token;

③ 通过access_token进行接口调用,获取用户基本数据资源或帮助用户实现基本操作。

第一步:请求code

第三方使用网站应用授权登录前请注意已获取相应网页授权作用域(scope=snsapi_login),则可以通过在pc端打开以下链接:https://open.weixin.qq.com/connect/qrconnect?appid=appid&redirect_uri=redirect_uri&response_type=code&scope=scope&state=state#wechat_redirect

返回说明

用户允许授权后,将会重定向到redirect_uri的网址上,并且带上code和state参数

redirect_uri?code=code&state=state

若用户禁止授权,则重定向后不会带上code参数,仅会带上state参数

redirect_uri?state=state

例如:登录一号店网站应用 https://passport.yhd.com/wechat/login.do 打开后,一号店会生成state参数,跳转到 https://open.weixin.qq.com/connect/qrconnect?appid=wxbdc5610cc59c1631&redirect_uri=https://passport.yhd.com/wechat/callback.do&response_type=code&scope=snsapi_login&state=3d6be0a4035d839573b04816624a415e#wechat_redirect 微信用户使用微信扫描二维码并且确认登录后,pc端会跳转到 https://passport.yhd.com/wechat/callback.do?code=code&state=3d6be0a4035d839573b04816624a415e

第二步:通过code获取access_token

通过code获取access_token

https://api.weixin.qq.com/sns/oauth3/access_token?appid=appid&secret=secret&code=code&grant_type=authorization_code

返回说明

正确的返回:

{ "access_token":"access_token", "expires_in":7200, "refresh_token":"refresh_token", "openid":"openid", "scope":"scope", "unionid": "o6_bmasdasdsad6_2sgvt7hmzopfl" }

错误返回样例:

{"errcode":40029,"errmsg":"invalid code"}

  • appsecret 是应用接口使用密钥,泄漏后将可能导致应用数据泄漏、应用的用户数据泄漏等高风险后果;存储在客户端,极有可能被恶意窃取(如反编译获取appsecret);
  • access_token 为用户授权第三方应用发起接口调用的凭证(相当于用户登录态),存储在客户端,可能出现恶意获取access_token 后导致的用户数据泄漏、用户微信相关接口功能被恶意发起等行为;
  • refresh_token 为用户授权第三方应用的长效凭证,仅用于刷新access_token,但泄漏后相当于access_token 泄漏,风险同上。

建议将secret、用户数据(如access_token)放在app云端服务器,由云端中转接口调用请求。

第三步:通过access_token调用接口

获取access_token后,进行接口调用,有以下前提:

  1. access_token有效且未超时;
  2. 微信用户已授权给第三方应用帐号相应接口作用域(scope)。

对于接口作用域(scope),能调用的接口有以下:

2. 授权流程代码

因为微信开放平台的appid和appsecret和微信公众平台的appid和appsecret都是不同的,因此需要配置一下:

# 开放平台 wechat.open-app-id=wx6ad144e54af67d87 wechat.open-app-secret=91a2ff6d38a2bbccfb7e9f9079108e2e @data @component @configurationproperties(prefix = "wechat") public class wechataccountconfig { //公众号appid private string mpappid; //公众号appsecret private string mpappsecret; //商户号 private string mchid; //商户秘钥 private string mchkey; //商户证书路径 private string keypath; //微信支付异步通知 private string notifyurl; //开放平台id private string openappid; //开放平台秘钥 private string openappsecret; } @configuration public class wechatopenconfig { @autowired private wechataccountconfig accountconfig; @bean public wxmpservice wxopenservice() { wxmpservice wxopenservice = new wxmpserviceimpl(); wxopenservice.setwxmpconfigstorage(wxopenconfigstorage()); return wxopenservice; } public wxmpconfigstorage wxopenconfigstorage() { wxmpinmemoryconfigstorage wxmpinmemoryconfigstorage = new wxmpinmemoryconfigstorage(); wxmpinmemorycon恰卡编程网figstorage.setappid(accountconfig.getopenappid()); wxmpinmemoryconfigstorage.setsecret(accountconfig.getopenappsecret()); return wxmpinmemoryconfigstorage; @controller @requestmapping("/wechat") @slf4j public class wechatcontroller { private wxmpservice wxmpservice; private wxmpservice wxopenservice; @getmapping("/qrauthorize") public string qrauthorize() { //returnurl就是用户授权同意后回调的地址 string returnurl = "http://heng.nat300.top/sell/wechat/qruserinfo"; //引导用户访问这个链接,进行授权 string url = wxopenservice.buildqrconnect); return "redirect:" url; //用户授权同意后回调的地址,从请求参数中获取code @getmapping("/qruserinfo") public string qruserinfo(@requestparam("code") string code) { wxmpoauth3accesstoken wxmpoauth3accesstoken = new wxmpoauth3accesstoken(); try { //通过code获取access_token wxmpoauth3accesstoken = wxopenservice.oauth3getaccesstoken(code); } catch (wxerrorexception e) { log.error("【微信网页授权】{}", e); throw new sellexception(resultenum.wechat_mp_error.getcode(), e.geterror().geterrormsg()); } //从token中获取openid string openid = wxmpoauth3accesstoken.getopenid(); //这个地址可有可无,反正只是为了拿到openid,但是如果没有会报404错误,为了好看随便返回一个百度的地址 string returnurl = "http://www.baidu.com"; log.info("openid={}", openid); return "redirect:" returnurl "?openid=" openid;

请求路径:在浏览器打开

https://open.weixin.qq.com/connect/qrconnect?appid=wx6ad144e54af67d87&redirect_uri=http://sell.springboot.cn/sell/qr/otgzpwenc6lwo2etddf_-uyyftqi&response_type=code&scope=snsapi_login&state=http://heng.nat300.top/sell/wechat/qruserinfo

获取了openid:openid=o9arev7xr22zuk6btvqw82bb6afk

3. 用户登录和登出

@controller @requestmapping("/seller") public class sellerusercontroller { @autowired private sellerservice sellerservice; private stringredistemplate redistemplate; private projecturlconfig projecturlconfig; @getmapping("/login") public modelandview login(@requestparam("openid") string openid, httpservletresponse response, map map) { //1. openid去和数据库里的数据匹配 sellerinfo sellerinfo = sellerservice.findsellerinfobyopenid(openid); if (sellerinfo == null) { map.put("msg", resultenum.login_fail.getmessage()); map.put("url", "/sell/seller/order/list"); return new modelandview("common/error"); } //2. 设置token至redis string token = uuid.randomuuid().tostring(); //设置token的过期时间 integer expire = redisconstant.expire; redistemplate.opsforvalue().set(string.format(redisconstant.token_prefix, token), openid, expire, timeunit.seconds); //3. 设置token至cookie cookieutil.set(response, cookieconstant.token, token, expire); return new modelandview("redirect:" "http://heng.nat300.top/sell/seller/order/list"); } @getmapping("/logout") public modelandview logout(httpservletrequest request, httpservletresponse response, map map) { //1. 从cookie里查询 cookie cookie = cookieutil.get(request, cookieconstant.token); if (cookie != null) { //2. 清除redis redistemplate.opsforvalue().getoperations().delete(string.format(redisconstant.token_prefix, cookie.getvalue())); //3. 清除cookie cookieutil.set(response, cookieconstant.token, null, 0); map.put("msg", resultenum.logout_success.getmessage()); map.put("url", "/sell/seller/order/list"); return new modelandview("common/success", map); }

① 将上一步获取到的openid存入数据库

② 将授权后跳转的地址改为登录地址

//用户授权同意后回调的地址,从请求参数中获取code @getmapping("/qruserinfo") public string qruserinfo(@requestparam("code") string code) { wxmpoauth3accesstoken wxmpoauth3accesstoken = new wxmpoauth3accesstoken(); try { //通过code获取access_token wxmpoauth3accesstoken = wxopenservice.oauth3getaccesstoken(code); } catch (wxerrorexception e) { log.error("【微信网页授权】{}", e); throw new sellexception(resultenum.wechat_mp_error.getcode(), e.geterror().geterrormsg()); } //从token中获取openid string openid = wxmpoauth3accesstoken.getopenid(); //授权成功后跳转到卖家系统的登录地址 string returnurl = "http://heng.nat300.top/sell/seller/login"; log.info("openid={}", openid); return "redirect:" returnurl "?openid=" openid; }

③ 在浏览器请求这个链接:

https://open.weixin.qq.com/connect/qrconnect?appid=wx6ad144e54af67d87&redirect_uri=http://sell.springboot.cn/sell/qr/otgzpwenc6lwo2etddf_-uyyftqi&response_type=code&scope=snsapi_login&state=http://heng.nat300.top/sell/wechat/qruserinfo

第三应用请求使用微信扫码登录,而不是使用本网站的密码:

用户同意授权后登入第三方应用的后台管理系统:

4. spring aop校验用户有没有登录

@aspect @component @slf4j public class sellerauthorizeaspect { @autowired private stringredistemplate redistemplate; @pointcut("execution(public * com.hh.controller.seller*.*(..))" "&& !execution(public * com.hh.controller.sellerusercontroller.*(..))") public void verify() {} @before("verify()") public void doverify() { servletrequestattributes attributes = (servletrequestattributes) requestcontextholder.getrequestattributes(); httpservletrequest request = attributes.getrequest(); //查询cookie cookie cookie = cookieutil.get(request, cookieconstant.token); //如果cookie中没有token说明已经登出或者根本没有登录 if (cookie == null) { log.warn("【登录校验】cookie中查不到token"); //校验不通过,抛出异常 throw new sellerauthorizeexception(); } //去redis里查询 string tokenvalue = redistemplate.opsforvalue().get(string.format(redisconstant.token_prefix, cookie.getvalue())); //如果redis中没有对应的openid,同样表示登出或者根本没有登录 if (stringutils.isempty(tokenvalue)) { log.warn("【登录校验】redis中查不到token"); } }

5. 拦截登录校验不通过抛出的异常

拦截及登录校验不通过的异常,让其跳转到登录页面,扫码登录

@controlleradvice public class sellexceptionhandler { //拦截登录异常 @exceptionhandler(value = sellerauthorizeexception.class) public modelandview handlerauthorizeexception() { //拦截异常后,跳转到登录界面 return new modelandview("redirect:".concat("https://open.weixin.qq.com/connect/qrconnect?" "appid=wx6ad144e54af67d87" "&redirect_uri=http://sell.springboot.cn/sell/qr/" "otgzpwenc6lwo2etddf_-uyyftqi" "&response_type=code&scope=snsapi_login" "&state=http://heng.nat300.top/sell/wechat/qruserinfo")); } @exchttp://www.cppcns.comeptionhandler(value = sellexception.class) @responsebody public resultvo handlersellerexception(sellexception e) { return resultvoutil.error(e.getcode(), e.getmessage()); } @exceptionhandler(value = responsebankexception.class) @responsestatus(httpstatus.forbidden) public void handleresponsebankexception() { } }

到此这篇关于springboot实现微信扫码登录的文章就介绍到这了,更多相关springboot微信扫码登录内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

展开全文
内容来源于互联网和用户投稿,文章中一旦含有亚博电竞手机版的联系方式务必识别真假,本站仅做信息展示不承担任何相关责任,如有侵权或涉及法律问题请联系亚博电竞手机版删除

最新文章

网站地图