You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure if this feature is already implemented on the project, but so far i didn't found anything about it.
Basically there is no "elegant" way of configuring a ClientDetailsService so we use the clients on the database instead of creating a InMemoryRegisteredClientRepository.
By my point of view, it should be something like in the previous versions of AuthorizationServer:
We have this on the AuthorizationServerConfig:
@Override
public void configure(ClientDetailsServiceConfigurer configurer) throws Exception {
configurer.withClientDetails(couchbaseClientDetailsService);
}
And then in the service we have:
@service
public class CouchbaseClientDetailsService implements ClientDetailsService {
Hi,
I'm not sure if this feature is already implemented on the project, but so far i didn't found anything about it.
Basically there is no "elegant" way of configuring a ClientDetailsService so we use the clients on the database instead of creating a InMemoryRegisteredClientRepository.
By my point of view, it should be something like in the previous versions of AuthorizationServer:
We have this on the AuthorizationServerConfig:
And then in the service we have:
@service
public class CouchbaseClientDetailsService implements ClientDetailsService {
}
It's behavior would be similar of what we're used to do on a UserDetailsService, but with client.
As i said before, i don't know if there's a way to do this already on the project, if it is, please tell me and i apologize.
Thank you for the hard work.
The text was updated successfully, but these errors were encountered: