繁体   English   中英

Spring Security 不适用于授权:来自 OAuth2 的不记名令牌

[英]Spring Security is not working with Authorization: Bearer token from OAuth2

我有两个微服务,第一个用于 OAuth2,第二个用于 API。 当我从浏览器登录时,一切正常,授权通过并重定向到我的 API 工作。 但是当我尝试通过 Postman 执行此操作时,我无法访问 API。

请看这个链接,我从这个https://www.baeldung.com/sso-spring-security-oauth2复制了很多代码

技术栈:Java 8、Spring Boot、Spring Web、Spring Security、OAuth2。

我尝试使用不同的配置和许多选项,但到目前为止我已将代码返回到传出状态,以便您可以告诉我可能是什么错误。

认证模块:

server:
  port: 8081
  servlet:
    context-path: /auth
@SpringBootApplication
@EnableResourceServer
public class AuthApplication extends SpringBootServletInitializer {

    public static void main(String[] args) {
        SpringApplication.run(AuthApplication.class, args);
    }

}
@Configuration
@EnableAuthorizationServer
public class AuthorizationServerConfig extends AuthorizationServerConfigurerAdapter {

    @Autowired
    private BCryptPasswordEncoder passwordEncoder;

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

    @Override
    public void configure(ClientDetailsServiceConfigurer clients) throws Exception {
        clients.inMemory()
               .withClient("my-client")
               .secret(passwordEncoder.encode("secret"))
               .authorizedGrantTypes("authorization_code", "client_credentials")
               .scopes("user_info", "read", "write", "trust")
               .autoApprove(true)
               .accessTokenValiditySeconds(5000)
               .redirectUris("http://localhost:8080/api/login");
    }
}
@Configuration
@Order(1)
public class SecurityConfig extends WebSecurityConfigurerAdapter {

    @Override
    protected void configure(HttpSecurity http) throws Exception {
        http.requestMatchers()
            .antMatchers("/login", "/oauth/authorize")
            .and()
            .authorizeRequests()
            .anyRequest().authenticated()
            .and()
            .formLogin().permitAll();
    }

    @Override
    protected void configure(AuthenticationManagerBuilder auth) throws Exception {
        auth.inMemoryAuthentication()
            .withUser("john")
            .password(passwordEncoder().encode("john"))
            .roles("USER");
    }

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

}

接口模块:

server:
  servlet:
    context-path: /api
security:
  oauth2:
    client:
      clientId: my-client
      clientSecret: secret
      accessTokenUri: http://localhost:8081/auth/oauth/token
      userAuthorizationUri: http://localhost:8081/auth/oauth/authorize
    resource:
      userInfoUri: http://localhost:8081/auth/user/me

@Configuration
@EnableOAuth2Sso
@EnableWebSecurity
public class OAuthConfig extends WebSecurityConfigurerAdapter {

    @Override
    public void configure(HttpSecurity http) throws Exception {
        http.antMatcher("/**")
            .authorizeRequests()
            .antMatchers("/login**")
            .permitAll()
            .anyRequest()
            .authenticated()
            .and()
            .logout().permitAll()
            .and()
            .httpBasic().disable();
    }
}
@RestController
public class DashboardController {

    @GetMapping("/demo")
    public String demo() {
        return "Hello";
    }
}

当我获得 access_token 时 - 我无法访问 API。 请看下面的截图访问令牌

不工作

此问题的根本原因是 OAuth2 应用程序上的 @EnableResourceServer 注释。 为什么? 因为实际上 OAuth2 服务器不能同时是资源服务和身份验证服务。 所以我们需要简化OAuth2资源端的逻辑,去掉下面的注解。 我要关闭这个问题。

如果有人有问题 - 请写评论

一般来说,我会专注于编写 API 并使用第三方授权服务器。 任何人都不应该编写自己的授权服务器 - 一些在线 Java 指南具有很强的误导性。 消费者将如何获得令牌并调用您的 API? 以下示例消息工作流程可能会帮助您思考: https: //authguidance.com/2017/09/26/basicspa-oauthworkflow/ 如果这有帮助,请随时 ping 我的后续问题

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM