欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Spring Security OAuth2认证授权示例详解

程序员文章站 2024-01-22 08:48:28
本文介绍了如何使用spring security oauth2构建一个授权服务器来验证用户身份以提供access_token,并使用这个access_token来从资源服务...

本文介绍了如何使用spring security oauth2构建一个授权服务器来验证用户身份以提供access_token,并使用这个access_token来从资源服务器请求数据。

1.概述

oauth2是一种授权方法,用于通过http协议提供对受保护资源的访问。首先,oauth2使第三方应用程序能够获得对http服务的有限访问权限,然后通过资源所有者和http服务之间的批准交互来让第三方应用程序代表资源所有者获取访问权限。

1.1 角色

oauth定义了四个角色

  • 资源所有者 - 应用程序的用户。
  • 客户端 - 需要访问资源服务器上的用户数据的应用程序。
  • 资源服务器 - 存储用户数据和http服务,可以将用户数据返回给经过身份验证的客户端。
  • 授权服务器 - 负责验证用户的身份并提供授权令牌。资源服务器接受此令牌并验证您的身份。

oauth2的交互过程:

Spring Security OAuth2认证授权示例详解

1.2 访问令牌与刷新令牌

访问令牌代表一个向客户授权的字符串。令牌包含了由资源所有者授予的权限范围和访问持续时间,并由资源服务器和授权服务器强制执行。

授权服务器向客户端发出刷新令牌,用于在当前访问令牌失效或过期时获取新的访问令牌,或获取具有相同或更窄范围的其他访问令牌,新的访问令牌可能具有比资源所有者授权的更短的生命周期和更少的权限。根据授权服务器的判断,发布刷新令牌是可选的。

访问令牌的责任是在数据到期之前访问它。
刷新令牌的责任是在现有访问令牌过期时请求新的访问令牌。

2. oauth2 - 授权服务器

要使用spring security oauth2模块创建授权服务器,我们需要使用注解@enableauthorizationserver并扩展authorizationserverconfigureradapter类。

@configuration
@enableauthorizationserver
public class oauth2authorizationserver extends authorizationserverconfigureradapter {
	@autowired
	private bcryptpasswordencoder passwordencoder;

	@override
	public void configure(authorizationserversecurityconfigurer security)
			throws exception {
		security.tokenkeyaccess("permitall()")
				.checktokenaccess("isauthenticated()")
				.allowformauthenticationforclients();
	}

	@override
	public void configure(clientdetailsserviceconfigurer clients)
			throws exception {
		clients.inmemory().withclient("clientapp")
				.secret(passwordencoder.encode("654321"))
				.authorizedgranttypes("password", "authorization_code",
						"refresh_token")
				.authorities("read_only_client").scopes("read_user_info")
				.resourceids("oauth2-resource")
				.redirecturis("http://localhost:8081/login")
				.accesstokenvalidityseconds(5000)
				.refreshtokenvalidityseconds(50000);
	}
}

spring security oauth2会公开了两个端点,用于检查令牌(/oauth/check_token和/oauth/token_key),这些端点默认受保护denyall()。tokenkeyaccess()和checktokenaccess()方法会打开这些端点以供使用。

clientdetailsserviceconfigurer用于定义客户端详细的服务信息,它可以在内存中或在数据库中定义。

在本例中我们使用了内存实现。它具有以下重要属性:

  • clientid - (必需)客户端id。
  • secret - (可信客户端所需)客户端密钥(可选)。
  • scope - 客户受限的范围。如果范围未定义或为空(默认值),则客户端不受范围限制。
  • authorizedgranttypes - 授权客户端使用的授权类型。默认值为空。
  • authorities - 授予客户的权限(常规spring security权限)。
  • redirecturis - 将用户代理重定向到客户端的重定向端点。它必须是绝对url。

3. oauth2 - 资源服务器

要创建资源服务器组件,请使用@enableresourceserver注解并扩展resourceserverconfigureradapter类。

@configuration
@enableresourceserver
public class oauth2resourceserver extends resourceserverconfigureradapter {
	@override
	public void configure(httpsecurity http) throws exception {
		http.authorizerequests()
			.antmatchers("/").permitall()
			.antmatchers("/api/**").authenticated();
	}
}

以上配置启用/api下所有端点的保护,但可以*访问其他端点。

资源服务器还提供了一种对用户自己进行身份验证的机制。在大多数情况下,它通常是基于表单的登录。

@configuration
@order(1)
public class securityconfig extends websecurityconfigureradapter {

	@override
	protected void configure(httpsecurity http) throws exception {
		http.antmatcher("/**")
				.requestmatchers()
				.antmatchers("/oauth/authorize**", "/login**", "/error**")
			.and()
				.authorizerequests().anyrequest().authenticated()
			.and()
				.formlogin().permitall();
	}

	@override
	protected void configure(authenticationmanagerbuilder auth)
			throws exception {
		auth.inmemoryauthentication().withuser("peterwanghao")
				.password(passwordencoder().encode("123456")).roles("user");
	}

	@bean
	public bcryptpasswordencoder passwordencoder() {
		return new bcryptpasswordencoder();
	}
}

4. oauth2保护的rest资源

本例中只创建了一个restful api,它返回登录用户的姓名和电子邮件。

@controller
public class restresource {
	@requestmapping("/api/users/me")
	public responseentity<userinfo> profile() {
		user user = (user) securitycontextholder.getcontext().getauthentication().getprincipal();
		string email = user.getusername() + "@126.com";

		userinfo profile = new userinfo();
		profile.setname(user.getusername());
		profile.setemail(email);

		return responseentity.ok(profile);
	}
}
public class userinfo {
	private string name;
	private string email;

	public string getname() {
		return name;
	}

	public void setname(string name) {
		this.name = name;
	}

	public string getemail() {
		return email;
	}

	public void setemail(string email) {
		this.email = email;
	}

	@override
	public string tostring() {
		return "user [name=" + name + ", email=" + email + "]";
	}
}

5.演示

我们有一个api http://localhost:8080/api/users/me ,我们想通过第三方应用程序来访问api需要oauth2令牌。

5.1 从用户获取授权许可代码

如上面的序列图所示,第一步是从url获取资源所有者的授权:

http://localhost:8080/oauth/authorize?client_id=clientapp&response_type=code&scope=read_user_info

通过浏览器访问上面的url地址,它将展现一个登录页面。提供用户名和密码。对于此示例,请使用“peterwanghao”和“123456”。

Spring Security OAuth2认证授权示例详解

登录后,您将被重定向到授予访问页面,您可以在其中选择授予对第三方应用程序的访问权限。

Spring Security OAuth2认证授权示例详解

它会重定向到url,如:http://localhost:8081/login?code=tuxuk9 。这里'tuxuk9'是第三方应用程序的授权代码。

5.2 从授权服务器获取访问令牌

现在,应用程序将使用授权码来获取访问令牌。在这里,我们需要提出以下请求。使用此处第一步中获得的代码。

curl -x post --user clientapp:654321 http://localhost:8080/oauth/token -h "content-type: application/x-www-form-urlencoded" -d "code=tuxuk9&grant_type=authorization_code&redirect_uri=http://localhost:8081/login&scope=read_user_info"

访问令牌响应

{ 
  "access_token": "168aad01-05dc-4446-9fba-fd7dbe8adb9e", 
  "token_type": "bearer", 
  "refresh_token": "34065175-1e92-4bb0-918c-a5a6ece1dc5f", 
  "expires_in": 4999, 
  "scope": "read_user_info" 
}

5.3 从资源服务器访问用户数据

一旦我们有了访问令牌,我们就可以转到资源服务器来获取受保护的用户数据。

curl -x get http://localhost:8080/api/users/me -h "authorization: bearer 168aad01-05dc-4446-9fba-fd7dbe8adb9e"

获得资源响应

{
  "name":"peterwanghao",
  "email":"peterwanghao@126.com"
}

6.总结

本文讲解了oauth2授权框架的实现机制,通过一个例子说明了第三方应用程序如何通过授权服务器的授权去资源服务器上获取受保护的数据。本例的完整代码在github 上。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。