问候,
我想问一下以下是否是Oauth 2.0的有效用例:
如果这是一个有效的用例,我们如何使用授权服务器配置多个客户端。无法使用application.properties(application.yml)进行配置。
security.oauth2.client.client-id=dummy
security.oauth2.client.client-secret=password
或
security:
oauth2:
resource:
token-info-uri: http://localhost:8080/oauth/check_token
client:
client-id: dummy
client-secret: password
在这种情况下,多个客户端应用程序的正确配置是什么?
答案 0 :(得分:1)
因此,如果您有多个客户端,则可以通过扩展AuthorizationServerConfigurerAdapter
以下是如何在内存中注册客户端详细信息的示例:
@EnableAuthorizationServer
@Configuration
public class AuthServerConfig extends AuthorizationServerConfigurerAdapter {
private final AuthenticationManager authenticationManager;
@Autowired
public AuthServerConfig(AuthenticationManager authenticationManager) {
this.authenticationManager = authenticationManager;
}
@Override
public void configure(ClientDetailsServiceConfigurer clients) throws Exception {
clients.inMemory()
.withClient("egen")
.secret("{noop}egensecret")
.authorizedGrantTypes("authorization_code","refresh_token","password")
.scopes("food_read","food_write")
.and()
.withClient("oauthclient")
.secret("{noop}oauthclient-secret")
.authorizedGrantTypes("client_credentials", "refresh_token")
.authorities("ROLE_USER", "ROLE_OPERATOR")
.scopes("food_read");
}
///more code
}
有关更多详细信息,您可以看一下我的github存储库: