Spring security OAuth认证需要ClientId和Secret

Posted

技术标签:

【中文标题】Spring security OAuth认证需要ClientId和Secret【英文标题】:Spring security OAuth authentication requires ClientId and Secret 【发布时间】:2018-11-23 05:57:16 【问题描述】:

在我的 Spring Security 应用程序中,我能够使用邮递员从我的“/oauth/token”端点成功获取 JWT 令牌。但是,我希望任何希望进行身份验证的人都可以访问 /oauth/endpoint,而无需 clientId 和 secret。

我的安全服务器

@Configuration
@EnableWebSecurity
public class GatewaySecurityConfigurer extends WebSecurityConfigurerAdapter 

    @Autowired
    private GatewayUserDetailsService gatewayUserDetailsService;

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

    @Bean
    public AuthenticationManager authenticationManagerBean() throws Exception 
        return super.authenticationManagerBean();
    

    @Bean
    public DaoAuthenticationProvider daoAuthenticationProvider() 
        DaoAuthenticationProvider daoAuthenticationProvider = new DaoAuthenticationProvider();
        daoAuthenticationProvider.setPasswordEncoder(passwordEncoder());
        daoAuthenticationProvider.setUserDetailsService(gatewayUserDetailsService);
        return daoAuthenticationProvider;
    

    @Override
    public void configure(AuthenticationManagerBuilder authenticationManagerBuilder) 
        authenticationManagerBuilder.authenticationProvider(daoAuthenticationProvider());
    

    @Override
    protected void configure(HttpSecurity http) throws Exception 
        http.authorizeRequests()
                .antMatchers("/oauth/token").permitAll()
                .antMatchers("actuator/**").fullyAuthenticated();
    


和我的资源服务器

@EnableResourceServer
@Configuration
@Import(GatewaySecurityConfigurer.class)
public class GatewayResourceServerConfigurer extends ResourceServerConfigurerAdapter 

    @Override
    public void configure(ResourceServerSecurityConfigurer config) 
        config.tokenServices(tokenServices());
    

    @Override
    public void configure(HttpSecurity http) throws Exception 
        http.authorizeRequests()
                .antMatchers("/oauth/token").permitAll()
                .antMatchers("actuator/**").fullyAuthenticated();
    

    @Bean
    public TokenStore tokenStore() 
        TokenStore store = new JwtTokenStore(accessTokenConverter());
        return store;
    

    @Bean
    public JwtAccessTokenConverter accessTokenConverter() 
        JwtAccessTokenConverter converter = new JwtAccessTokenConverter();
        converter.setSigningKey("123");
        return converter;
    

    @Bean
    public DefaultTokenServices tokenServices() 
        DefaultTokenServices defaultTokenServices = new DefaultTokenServices();
        defaultTokenServices.setTokenStore(tokenStore());
        defaultTokenServices.setSupportRefreshToken(true);
        return defaultTokenServices;
    


正如您在这两个类中看到的那样,我尝试实现一个 HttpSecurity 配置,该配置将允许对 /oauth/token 的所有请求,这些请求具有需要验证的其他路径。但是,当我在没有 clientId 和秘密的情况下发布时,我的邮递员请求中出现了 401 空 http 响应。

我怎样才能让我的代码不需要 clientId 和 Secret 进行身份验证?

【问题讨论】:

【参考方案1】:

OAuth 是一个授权框架。 (参见 RFC 6749。)它允许第三方应用程序(客户端)代表用户获得对 HTTP 服务的有限访问。没有客户端的授权是没有意义的。

您可能只需要一个简单的端点,用户可以在其中登录并获取 JWT。

以下教程解释了如何使用自定义 Spring 安全过滤器构建 JWT 身份验证:https://auth0.com/blog/securing-spring-boot-with-jwts

【讨论】:

以上是关于Spring security OAuth认证需要ClientId和Secret的主要内容,如果未能解决你的问题,请参考以下文章

spring security oauth2认证中心 集成zuul网关的代码分析

spring security oauth2 认证端异常处理(基于前后分离统一返回json)

Spring security oauth2 client_credentials认证

认证开发+Oauth2(授权码)模式+Spring Security+网关解说

Spring Security OAuth2.0认证授权

Spring Security OAuth2.0认证授权