Oauth2协议

x33g5p2x  于2021-11-17 转载在 其他  
字(12.1k)|赞(0)|评价(0)|浏览(331)

Oauth2简介

第三方认证技术方案最主要是解决认证协议的通用标准问题,因为要实现跨系统认证,各系统之间要遵循一定的接口协议。

OAUTH协议为用户资源的授权提供了一个安全的、开放而又简易的标准。同时,任何第三方都可以使用OAUTH认证服务,任何服务提供商都可以实现自身的OAUTH认证服务,因而OAUTH是开放的。业界提供了OAUTH的多种实现如PHP、JavaScript,Java,Ruby等各种语言开发包,大大节约了程序员的时间,因而OAUTH是简易的。互联网很多服务如Open API,很多大公司如Google,Yahoo,Microsoft等都提供了OAUTH认证服务,这些都足以说明OAUTH标准逐渐成为开放资源授权的标准。

Oauth协议目前发展到2.0版本,1.0版本过于复杂,2.0版本已得到广泛应用。

参考:https://baike.baidu.com/item/oAuth/7153134?fr=aladdin

Oauth 协议:https://tools.ietf.org/html/rfc6749

下边分析一个Oauth2认证的例子,网站使用微信认证的过程:

1.用户进入网站的登录页面,点击微信的图标以微信账号登录系统,用户是自己在微信里信息的资源拥有者。

点击“微信”出现一个二维码,此时用户扫描二维码,开始给网站授权。

2.资源拥有者同意给客户端授权

资源拥有者扫描二维码表示资源拥有者同意给客户端授权,微信会对资源拥有者的身份进行验证,验证通过后,微信会询问用户是否给授权网站访问自己的微信数据,用户点击“确认登录”表示同意授权,微信认证服务器会颁发一个授权码,并重定向到网站。

  1. 客户端获取到授权码,请求认证服务器申请令牌

此过程用户看不到,客户端应用程序请求认证服务器,请求携带授权码。

  1. 认证服务器向客户端响应令牌

认证服务器验证了客户端请求的授权码,如果合法则给客户端颁发令牌,令牌是客户端访问资源的通行证。此交互过程用户看不到,当客户端拿到令牌后,用户在网站看到已经登录成功。

  1. 客户端请求资源服务器的资源

客户端携带令牌访问资源服务器的资源。网站携带令牌请求访问微信服务器获取用户的基本信息。

  1. 资源服务器返回受保护资源

资源服务器校验令牌的合法性,如果合法则向用户响应资源信息内容。

注意:资源服务器和认证服务器可以是一个服务也可以分开的服务,如果是分开的服务资源服务器通常要请求认证服务器来校验令牌的合法性。

Oauth2.0认证流程如下:

引自Oauth2.0协议rfc6749 https://tools.ietf.org/html/rfc6749

角色

客户端

本身不存储资源,需要通过资源拥有者的授权去请求资源服务器的资源,比如:Android客户端、Web客户端(浏览器端)、微信客户端等。

资源拥有者

通常为用户,也可以是应用程序,即该资源的拥有者。

授权服务器(也称认证服务器)

用来对资源拥有的身份进行认证、对访问资源进行授权。客户端要想访问资源需要通过认证服务器由资源拥有者授权后方可访问。

资源服务器

存储资源的服务器,比如,网站用户管理服务器存储了网站用户信息,网站相册服务器存储了用户的相册信息,微信的资源服务存储了微信的用户信息等。客户端最终访问资源服务器获取资源信息。

常用术语

  • 客户凭证(client Credentials):客户端的clientId和密码用于认证客户
  • 令牌(tokens):授权服务器在接收到客户请求后,颁发的访问令牌
  • 作用域(scopes):客户请求访问令牌时,由资源拥有者额外指定的细分权限(permission)

令牌类型

  • 授权码:仅用于授权码授权类型,用于交换获取访问令牌和刷新令牌
  • 访问令牌:用于代表一个用户或服务直接去访问受保护的资源
  • 刷新令牌:用于去授权服务器获取一个刷新访问令牌
  • BearerToken:不管谁拿到Token都可以访问资源,类似现金
  • Proof of Possession(PoP) Token:可以校验client是否对Token有明确的拥有权

特点

优点

​ 更安全,客户端不接触用户密码,服务器端更易集中保护

​ 广泛传播并被持续采用

​ 短寿命和封装的token

​ 资源服务器和授权服务器解耦

​ 集中式授权,简化客户端

​ HTTP/JSON友好,易于请求和传递token

​ 考虑多种客户端架构场景

​ 客户可以具有不同的信任级别

缺点

协议框架太宽泛,造成各种实现的兼容性和互操作性差

​ 不是一个认证协议,本身并不能告诉你任何用户信息。

授权模式

授权码模式(Authorization Code)

简化授权模式(Implicit)

密码模式(Resource Owner PasswordCredentials)

同一个大型项目里面获取资源

客户端模式(Client Credentials)


刷新令牌
docker就是客户端模式,去授权服务器进行授权,拿到令牌后,直接下载对应的镜像

刷新令牌----令牌过期

Spring Security Oauth2

授权服务器

  • Authorize Endpoint:授权端点,进行授权
  • Token Endpoint:令牌端点,经过授权拿到对应的Token
  • Introspection Endpoint:校验端点,校验Token的合法性
  • Revocation Endpoint:撤销端点,撤销授权

Spring Security Oauth2架构

流程:

  1. 用户访问,此时没有Token。Oauth2RestTemplate会报错,这个报错信息会被Oauth2ClientContextFilter捕获并重定向到认证服务器
  2. 认证服务器通过Authorization Endpoint进行授权,并通过AuthorizationServerTokenServices生成授权码并返回给客户端
  3. 客户端拿到授权码去认证服务器通过Token Endpoint调用AuthorizationServerTokenServices生成Token并返回给客户端
  4. 客户端拿到Token去资源服务器访问资源,一般会通过Oauth2AuthenticationManager调用ResourceServerTokenServices进行校验。校验通过可以获取资源。

Spring Security Oauth2授权码模式

创建项目

添加依赖

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.springframework.boot</groupId>
  6. <artifactId>spring-boot-starter-parent</artifactId>
  7. <version>2.2.2.RELEASE</version>
  8. <relativePath/> <!-- lookup parent from repository -->
  9. </parent>
  10. <groupId>com.yjxxt</groupId>
  11. <artifactId>springsecurityoauth2demo</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <name>springsecurityoauth2demo</name>
  14. <description>Demo project for Spring Boot</description>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. <spring-cloud.version>Greenwich.SR2</spring-cloud.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.cloud</groupId>
  22. <artifactId>spring-cloud-starter-oauth2</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.cloud</groupId>
  26. <artifactId>spring-cloud-starter-security</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-web</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-test</artifactId>
  35. <scope>test</scope>
  36. </dependency>
  37. </dependencies>
  38. <dependencyManagement>
  39. <dependencies>
  40. <dependency>
  41. <groupId>org.springframework.cloud</groupId>
  42. <artifactId>spring-cloud-dependencies</artifactId>
  43. <version>${spring-cloud.version}</version>
  44. <type>pom</type>
  45. <!--只有在引入的时候才会生效-->
  46. <scope>import</scope>
  47. </dependency>
  48. </dependencies>
  49. </dependencyManagement>
  50. <build>
  51. <plugins>
  52. <plugin>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-maven-plugin</artifactId>
  55. </plugin>
  56. </plugins>
  57. </build>
  58. </project>

编写配置类

SecurityConfig.java----安全配置

  1. @Configuration
  2. @EnableWebSecurity
  3. public class SecurityConfig extends WebSecurityConfigurerAdapter {
  4. @Bean
  5. public PasswordEncoder passwordEncoder() {
  6. return new BCryptPasswordEncoder();
  7. }
  8. @Override
  9. public void configure(HttpSecurity http) throws Exception {
  10. http.csrf()
  11. .disable()
  12. .authorizeRequests()
  13. .antMatchers("/oauth/**", "/login/**", "/logout/**")
  14. .permitAll()
  15. .anyRequest()
  16. .authenticated()
  17. .and()
  18. .formLogin()
  19. .permitAll();
  20. }
  21. }

AuthorizationServerConfig.java----认证服务器配置

  1. @Configuration
  2. @EnableAuthorizationServer
  3. public class AuthorizationServerConfig extends AuthorizationServerConfigurerAdapter {
  4. @Autowired
  5. private PasswordEncoder passwordEncoder;
  6. @Override
  7. public void configure(ClientDetailsServiceConfigurer clients) throws Exception {
  8. //放在内存中
  9. clients.inMemory()
  10. //配置client_id--客户端id
  11. .withClient("admin")
  12. //配置client-secret---秘钥---出于安全考虑,最好加密一下
  13. .secret(passwordEncoder.encode("112233"))
  14. //配置redirect_uri,用于授权成功后跳转
  15. //这里重定向uri是用来获取授权码的
  16. .redirectUris("http://www.baidu.com")
  17. //配置申请的权限范围---可以细分,这里是全部
  18. .scopes("all")
  19. //配置grant_type,表示授权类型--这里是授权码模式
  20. .authorizedGrantTypes("authorization_code");
  21. }
  22. }

ResourceServerConfig.java----资源服务器配置

  1. @Configuration
  2. @EnableResourceServer
  3. public class ResourceServerConfig extends ResourceServerConfigurerAdapter {
  4. @Override
  5. public void configure(HttpSecurity http) throws Exception {
  6. http.authorizeRequests()
  7. .anyRequest()
  8. .authenticated()
  9. .and()
  10. .requestMatchers()
  11. .antMatchers("/user/**");//配置需要保护的资源路径
  12. }
  13. }

这里把客户端,授权服务器,资源服务器都放在了一起,正式环境下,客户端,授权服务器,资源服务器都属于不同的服务器

编写实体类

User.java

  1. /** * 用户类 */
  2. public class User implements UserDetails {
  3. private String username;
  4. private String password;
  5. private List<GrantedAuthority> authorities;
  6. public User(String username, String password, List<GrantedAuthority> authorities) {
  7. this.username = username;
  8. this.password = password;
  9. this.authorities = authorities;
  10. }
  11. @Override
  12. public Collection<? extends GrantedAuthority> getAuthorities() {
  13. return authorities;
  14. }
  15. @Override
  16. public String getPassword() {
  17. return password;
  18. }
  19. @Override
  20. public String getUsername() {
  21. return username;
  22. }
  23. @Override
  24. public boolean isAccountNonExpired() {
  25. return true;
  26. }
  27. @Override
  28. public boolean isAccountNonLocked() {
  29. return true;
  30. }
  31. @Override
  32. public boolean isCredentialsNonExpired() {
  33. return true;
  34. }
  35. @Override
  36. public boolean isEnabled() {
  37. return true;
  38. }
  39. }

编写Service

UserService.java

  1. @Service
  2. public class UserService implements UserDetailsService {
  3. @Autowired
  4. private PasswordEncoder passwordEncoder;
  5. @Override
  6. public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
  7. String password = passwordEncoder.encode("123456");
  8. return new User("admin",password, AuthorityUtils.commaSeparatedStringToAuthorityList("admin"));
  9. }
  10. }

编写Controller

UserController.java

  1. //资源
  2. @RestController
  3. @RequestMapping("/user")
  4. public class UserController {
  5. @GetMapping("/getCurrentUser")
  6. public Object getCurrentUser(Authentication authentication) {
  7. return authentication.getPrincipal();
  8. }
  9. }

测试

获取授权码

http://localhost:8080/oauth/authorize?response_type=code&client_id=admin&redirect_uri=http://www.baidu.com&scope=all

  1. http://localhost:8080/oauth/authorize?
  2. response_type=code&client_id=admin&redirect_uri=http://www.baidu.com&scope=all

注意,如果一直出现用户名和密码错误,请查看自己创建的user类,是否在对应getUname,getUpwd方法中返回了正确的用户名和密码

输入账户密码

点击授权获取授权码

根据授权码获取令牌(POST请求)

  1. localhost/oauth/token

  • grant_type:授权类型,填写authorization_code,表示授权码模式
  • code:授权码,就是刚刚获取的授权码,注意:授权码只使用一次就无效了,需要重新申请。
  • client_id:客户端标识
  • redirect_uri:申请授权码时的跳转url,一定和申请授权码时用的redirect_uri一致。
  • scope:授权范围。

认证失败服务端返回 401 Unauthorized

注意:此时无法请求到令牌,访问服务器会报错

出现这个错误,找找是不是body请求体某个参数的key写错了,或者其他地方写错了

无论本次获取token成功与否,授权码都只能使用一次,使用一次后就无效了,需要重新申请。

通过授权码获取到的token如下:

根据token去资源服务器拿资源

拿到返回的资源信息:

如果修改token就会报错

Spring Security Oauth2 密码模式

在上面的代码中进行适当的修改即可

SecurityConfig.java

  1. @Configuration
  2. @EnableWebSecurity
  3. public class SecurityConfig extends WebSecurityConfigurerAdapter {
  4. @Bean
  5. public PasswordEncoder passwordEncoder() {
  6. return new BCryptPasswordEncoder();
  7. }
  8. //用于密码模式
  9. @Bean
  10. @Override
  11. public AuthenticationManager authenticationManagerBean() throws Exception {
  12. return super.authenticationManagerBean();
  13. }
  14. @Override
  15. public void configure(HttpSecurity http) throws Exception {
  16. http.csrf()
  17. .disable()
  18. .authorizeRequests()
  19. .antMatchers("/oauth/**", "/login/**", "/logout/**")
  20. .permitAll()
  21. .anyRequest()
  22. .authenticated()
  23. .and()
  24. .formLogin()
  25. .permitAll();
  26. }
  27. }

AuthorizationServerConfig.java

  1. /** * 授权服务器配置 */
  2. @Configuration
  3. @EnableAuthorizationServer
  4. public class AuthorizationServerConfig extends AuthorizationServerConfigurerAdapter {
  5. @Autowired
  6. private PasswordEncoder passwordEncoder;
  7. @Autowired
  8. private AuthenticationManager authenticationManager;
  9. @Autowired
  10. private UserService userService;
  11. /** * 使用密码模式需要配置 */
  12. @Override
  13. public void configure(AuthorizationServerEndpointsConfigurer endpoints) {
  14. endpoints.authenticationManager(authenticationManager)
  15. .userDetailsService(userService);
  16. }
  17. @Override
  18. public void configure(ClientDetailsServiceConfigurer clients) throws Exception {
  19. clients.inMemory()
  20. //配置client_id
  21. .withClient("admin")
  22. //配置client-secret
  23. .secret(passwordEncoder.encode("112233"))
  24. //配置访问token的有效期
  25. .accessTokenValiditySeconds(3600)
  26. //配置刷新token的有效期
  27. .refreshTokenValiditySeconds(864000)
  28. //配置redirect_uri,用于授权成功后跳转
  29. .redirectUris("http://www.baidu.com")
  30. //配置申请的权限范围
  31. .scopes("all")
  32. //配置grant_type,表示授权类型
  33. //可以同时指定多个
  34. .authorizedGrantTypes("authorization_code","password");
  35. }
  36. }

测试:

下面的认证输入的是用户id和秘钥

密码登录输入的就是我们自定义用户时,设置的用户名和密码

访问请求获取令牌

  1. http://localhost:8080/oauth/token

获取到令牌

拿着令牌请求资源

在Redis中存储token

之前的代码我们将token直接存在内存中,这在生产环境中是不合理的,下面我们将其改造成存储在Redis中

添加依赖及配置

pom.xml

  1. <!--redis 依赖-->
  2. <dependency>
  3. <groupId>org.springframework.boot</groupId>
  4. <artifactId>spring-boot-starter-data-redis</artifactId>
  5. </dependency>
  6. <!-- commons-pool2 对象池依赖 -->
  7. <dependency>
  8. <groupId>org.apache.commons</groupId>
  9. <artifactId>commons-pool2</artifactId>
  10. </dependency>

application.properties

  1. # Redis配置
  2. spring.redis.host=192.168.10.100
  3. #如果redis设置了密码登录,不要忘记配置

编写Redis配置类

RedisConfig.java

  1. /** * 使用redis存储token的配置 * @author zhoubin * @since 1.0.0 */
  2. @Configuration
  3. public class RedisConfig {
  4. @Autowired
  5. private RedisConnectionFactory redisConnectionFactory;
  6. @Bean
  7. public TokenStore redisTokenStore(){
  8. return new RedisTokenStore(redisConnectionFactory);
  9. }
  10. }

在认证服务器配置中指定令牌的存储策略为Redis

  1. /** * 授权服务器配置 * @author zhoubin * @since 1.0.0 */
  2. @Configuration
  3. @EnableAuthorizationServer
  4. public class AuthorizationServerConfig extends AuthorizationServerConfigurerAdapter {
  5. @Autowired
  6. private PasswordEncoder passwordEncoder;
  7. @Autowired
  8. private AuthenticationManager authenticationManager;
  9. @Autowired
  10. private UserService userService;
  11. @Autowired
  12. @Qualifier("redisTokenStore")
  13. private TokenStore tokenStore;
  14. /** * 使用密码模式需要配置 */
  15. @Override
  16. public void configure(AuthorizationServerEndpointsConfigurer endpoints) {
  17. endpoints.authenticationManager(authenticationManager)
  18. .userDetailsService(userService)
  19. .tokenStore(tokenStore);
  20. }
  21. @Override
  22. public void configure(ClientDetailsServiceConfigurer clients) throws Exception {
  23. clients.inMemory()
  24. //配置client_id
  25. .withClient("admin")
  26. //配置client-secret
  27. .secret(passwordEncoder.encode("112233"))
  28. //配置访问token的有效期
  29. .accessTokenValiditySeconds(3600)
  30. //配置刷新token的有效期
  31. .refreshTokenValiditySeconds(864000)
  32. //配置redirect_uri,用于授权成功后跳转
  33. .redirectUris("http://www.baidu.com")
  34. //配置申请的权限范围
  35. .scopes("all")
  36. //配置grant_type,表示授权类型
  37. .authorizedGrantTypes("password");
  38. }
  39. }

测试:

使用密码模式请求token

相关文章