【发布时间】:2019-12-21 19:27:32
【问题描述】:
我有两个微服务,第一个用于 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();
}
}
API 模块:
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";
}
}
【问题讨论】:
标签: spring spring-boot spring-security oauth-2.0 bearer-token