-
Notifications
You must be signed in to change notification settings - Fork 920
Open
Description
Hi,
On running auth server its not persisting the client in DB but users are getting persist, how to persist the client info also in DB.
public void configure(ClientDetailsServiceConfigurer clients)
throws Exception {
clients.jdbc(dataSource)
.passwordEncoder(passwordEncoder)
.withClient("client")
.authorizedGrantTypes("authorization_code", "client_credentials",
"refresh_token","password", "implicit")
.authorities("ROLE_CLIENT")
.resourceIds("apis")
.scopes("read")
.secret("secret")
.accessTokenValiditySeconds(300);
}
Please suggest
Thanks
Metadata
Metadata
Assignees
Labels
No labels