gpt4 book ai didi

spring-boot - 当授权服务器也是资源服务器时如何配置oAuth2

转载 作者:行者123 更新时间:2023-12-05 04:04:37 26 4
gpt4 key购买 nike

我正在尝试使用授权代码授予隐式授予在 spring boot 2.x.x 中设置一个非常基本的 oAuth2 身份验证,但我似乎无法访问获取 token 后的资源服务器(与授权服务器驻留在同一个 spring boot 应用程序中)。

以下是WebSecurityConfigurerAdapter的配置

@EnableWebSecurity
@Configuration
public class WebSecurityConfiguration extends WebSecurityConfigurerAdapter {

private static final String[] IGNORE_URIS = {
"/swagger-resources/**",
"/swagger-ui.html",
"/v2/api-docs",
"/webjars/**",
"/resources/**",
"/h2-console/**",
"/common/**",
"/configuration/ui",
"/configuration/security",
"/error"
};

@Bean
public PasswordEncoder passwordEncoder() {
return new BCryptPasswordEncoder();
}


@Override
public void configure(WebSecurity web) {
web.ignoring().antMatchers(IGNORE_URIS);
}

@Override
protected void configure(HttpSecurity http) throws Exception {

http.authorizeRequests()
.antMatchers("/product/**")
.hasAnyRole("ADMIN").and()
.httpBasic().and().formLogin().and().authorizeRequests().anyRequest().authenticated();

}

@Override
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
auth.inMemoryAuthentication().withUser("admin").password("{noop}admin").roles("ADMIN");
}

@Bean
public PasswordEncoder bCrypt() {
return new BCryptPasswordEncoder();
}

AuthorizationServerConfigurerAdapter

@Configuration
@EnableAuthorizationServer
public class AuthorizationServerConfiguration extends AuthorizationServerConfigurerAdapter {

private final AuthenticationManager authenticationManager;

@Autowired
public AuthorizationServerConfiguration(AuthenticationConfiguration authenticationConfiguration) throws Exception {
this.authenticationManager = authenticationConfiguration.getAuthenticationManager();
}

@Override
public void configure(ClientDetailsServiceConfigurer clients) throws Exception {
clients
.inMemory()
.withClient("my-client-id")
.authorizedGrantTypes("authorization_code", "implicit")
.authorities("ADMIN")
.scopes("all")
.resourceIds("product_api")
.secret("{noop}secret").redirectUris("https://google.com").accessTokenValiditySeconds(0);
}

@Override
public void configure(AuthorizationServerSecurityConfigurer oauthServer) throws Exception {
oauthServer.tokenKeyAccess("permitAll()")
.checkTokenAccess("permitAll()");
}

@Override
public void configure(AuthorizationServerEndpointsConfigurer endpoints) throws Exception {
endpoints.authenticationManager(authenticationManager);
}
}

到目前为止一切顺利。我可以通过在浏览器中键入以下 Url 来访问默认的 Spring 登录页面。

http://localhost:8080/oauth/authorize?response_type=token&client_id=my-client-id&redirect_uri=https://google.com

然后登录页面出现,我输入我的凭据。

basic auth login

登录后,我可以授予对“my-client-id” 应用程序的访问权限。

approve

最终在我批准该应用程序后,我可以在浏览器的 URL 栏中看到新生成的访问 token ,如下所示。

https://www.google.com/#access_token=f2153498-6a26-42c6-93f0-80825ef03b16&token_type=bearer&scope=all

我的问题是,当我还配置资源服务器时,所有这些流程都无法正常工作。

@EnableResourceServer
@Configuration
public class ResourceServerConfiguration extends ResourceServerConfigurerAdapter {

@Override
public void configure(ResourceServerSecurityConfigurer resources) {
resources.resourceId("product_api");
}


@Override
public void configure(HttpSecurity http) throws Exception {
http
.requestMatchers()
.antMatchers("/**")
.and().authorizeRequests()
.antMatchers("/**").permitAll();
}
}

我做错了什么?当我像以前一样尝试访问 oauth/authorize url 时,我得到以下信息:

error

为什么?如何访问登录页面并检索 token ?我错过了什么?

最佳答案

你需要使用

@Order 

为 WebMvc 和 ResourceServer 类指定顺序的注解

@EnableWebSecurity
@Configuration
@Order(1)
public class WebSecurityConfiguration extends WebSecurityConfigurerAdapter {
...
}

和资源服务器

@EnableResourceServer
@Configuration
@Order(2)
public class ResourceServerConfiguration extends ResourceServerConfigurerAdapter {
...
}

如果你想看到可行的例子,你可以在这里查看https://github.com/alex-petrov81/stackoverflow-answers/tree/master/auth-server-also-resource我是根据您的代码示例创建的。

关于spring-boot - 当授权服务器也是资源服务器时如何配置oAuth2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52382902/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com