I have Auth0 set up to secure a resource server via Spring Security, but access tokens are currently being provided directly from Auth0. I’m looking to instead set up an authorization server through Spring Security that will abstract Auth0 away from the rest of our services. I’m envisioning a simple AuthorizationServerConfigurerAdapter extension with the necessary configurations to talk to Auth0, though I can’t seem to find any examples anywhere. Any help is greatly appreciated!
Thanks