当前位置:   article > 正文

OAuth2的入门理解和案例解析_解析oauth2中的信息

解析oauth2中的信息

OAuth2基本概念

        OAuth2全名为开放授权2.0(Open Authorization2.0);它是一个开放标准的授权协议;

用于授权于一个应用程序或服务访问用户在另一个应用程序中的资源,但能够无需提供

用户名和密码;例如我们现在常用的B站,它就能够通过微信,QQ等第三方实现用户登录

来进行用户操作;此时就以OAuth2协议来获取我们用户的基本信息;

OAuth2相关属性解析

        client_id/appid:客户端id。

        client_secret/secret:客户端密码或密钥。

        code:授权码;用来后续获取第三方的token。

        grant_type:选择的客户端授权模式;具体有四种模式;下面会简单介绍。

        redirect_uri:重定向地址。

        scope:用于限制应用程序对用户帐户的访问。应用程序可以请求一个或多个范围,然后该信息会在同意屏幕中呈现给用户,并且颁发给应用程序的访问令牌将仅限于授予的范围。

        access_token:我们所需要的申请令牌。

OAuth2的四种授权模式

授权码模式:用户先通过第三方应用向认证服务器申请授权码,再用授权码换取访问令牌;该模式安全性最高;

简化模式/隐式授权模式:用户直接通过第三方应用向认证服务器申请访问令牌,无需授权码。

其实就是没有授权码这中间步骤

密码模式:如果你高度信任某个第三方应用,可以将用户名和密码告诉该第三方应用,第三方应用拿到用户名和密码去申请授权获取令牌。 在这种模式中,用户必须把自己的密码给客户端。

客户端模式:第三方应用直接向认证服务器申请访问令牌,无需用户参与。


OAuth2授权码的流程解析

图片流程

文字解析:

(1)用户在客户端中选择了第三方登录

(2)此时资源服务器会重定向到对应的授权服务器去获取授权码;

  1. private final String REDIRECT_URI="http://127.0.0.1:9000/login/rcv_code";
  2. private final String CLIENT_ID="sobook";
  3. private final String SCOPE="all";
  4. private final String GRANT_TYPE="authorization_code";
  5. private final String CLIENT_SECRET="223344";
  6. @RequestMapping("/login/code")
  7. public String LoginCode(){
  8. //发出请求获取授权码
  9. String url = "http://127.0.0.1:8000/oauth/authorize?response_type=code" +
  10. "&client_id=" +CLIENT_ID+
  11. "&redirect_uri="+REDIRECT_URI+
  12. "&scope="+SCOPE;
  13. return "redirect:" +url;
  14. }

(3)获取用户授权;用户输入对应的账号密码

(4)授权服务器校验成功后重定向返回授权码给资源服务器

  1. @Configuration
  2. @EnableAuthorizationServer //放在过滤器的链条
  3. public class QqAuth2ServerConfig extends
  4. AuthorizationServerConfigurerAdapter {
  5. @Override
  6. public void configure(ClientDetailsServiceConfigurer clients) throws Exception {
  7. clients.inMemory()
  8. .withClient("sobook").secret(passwordEncoder.encode("223344"))//资源服务器的id和密钥
  9. .authorizedGrantTypes( "authorization_code")//授权模式为验证码
  10. .scopes("all")
  11. .autoApprove(true)
  12. .redirectUris("http://127.0.0.1:9000/login/rcv_code");//重定向地址
  13. }
  14. }

(5)资源服务器通过授权码再次发送请求到授权服务器中获取token(请求令牌)

  1. HttpRequest postRequest =
  2. HttpRequest.post("http://127.0.0.1:8000/oauth/token");
  3. postRequest.form("grant_type",GRANT_TYPE);
  4. postRequest.form("code",code);
  5. postRequest.form("client_id",CLIENT_ID);
  6. postRequest.form("client_secret",CLIENT_SECRET);
  7. postRequest.form("redirect_uri",REDIRECT_URI);
  8. //通过授权码获取token
  9. HttpResponse resp = postRequest.execute();
  10. String body = resp.body();//我们需要的token在body里面
  11. Map map = objectMapper.readValue(body, Map.class);//将字符串转成对象
  12. String token = (String) map.get("access_token");//获取token

(6)授权服务器校验成功后返回token给资源服务器

(7)资源服务器通过携带token再次发送请求到授权服务器中获取我们当前用户的基本信息与权限

  1. //通过token获取用户信息
  2. String url = "http://127.0.0.1:8000/api/info/getUser";
  3. HttpRequest postUser = HttpRequest.get(url).
  4. header("Authorization","bearer "+token);
  5. String body1 = postUser.execute().body();

(8)授权服务器会将对应的用户信息和权限返回给资源服务器

  1. @GetMapping("/getUser")
  2. public Object getUser() {
  3. Object principal =
  4. SecurityContextHolder.getContext().getAuthentication().getPrincipal();
  5. System.out.println("principal=" + principal);
  6. if (principal==null) return null;
  7. if (principal instanceof UserDetails) {
  8. return (UserDetails) principal;
  9. } else {
  10. return String.valueOf(principal);
  11. }
  12. }

补充

        (1)在该例子中的client_id和client_secret都是我们自己手动创建的;在真正的项目当中我们使用OAuth2时需要向对应的第三方应用请求申请一下自己的client_id和client_secret.

        (2)所谓资源并非是我们资源服务器内Controller下的所有类;是要在我们资源服务器的声明类下所定义好的路径

  1. @Configuration
  2. @EnableResourceServer //声明是资源服务器并且放在过滤器链条
  3. public class ResourceServerConfig extends ResourceServerConfigurerAdapter {
  4. @Override
  5. public void configure(HttpSecurity http) throws Exception {
  6. http.requestMatchers().antMatchers("/api/**")//定义以api开头的路由为资源
  7. .and()
  8. .authorizeRequests()
  9. .antMatchers("/api/adm/**").hasAuthority("adm")
  10. .antMatchers("/api/stu/**").hasAuthority("stu")
  11. .antMatchers("/api/**").authenticated();//authenticated已验证
  12. }

(3)在学习OAuth2中一定要理解什么是客户端,谁是第三方、哪些是资源;在不同的场景角度下

第三方的定义可能会有所不同;如对于微信来说,微信下的小程序应用就是第三方应用;而对于

小程序来说微信就是第三方授权;

(4)

  1. @Configuration
  2. @EnableAuthorizationServer //放在过滤器的链条
  3. public class QqAuth2ServerConfig extends
  4. AuthorizationServerConfigurerAdapter {
  5. @Override
  6. public void configure(AuthorizationServerSecurityConfigurer oauthServer) {
  7. System.out.println("checkTokenAccess(\"permitAll()\")");
  8. oauthServer.tokenKeyAccess("permitAll()") // /oauth/token
  9. .checkTokenAccess("permitAll()") // /ouath/check_token
  10. .allowFormAuthenticationForClients();
  11. }
  12. }

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
  

闽ICP备14008679号