While integrating Spring Authorization Server in my system for the oauth2 basic workflow, i found myself in potential situations regarding the future extensions for this.
Is any of the following feature possible to be integrated in the spring authorization server microservice?
- Provide a way for users to register and then after automatically be logged in
- Provide multi factor authentication/sms , etc.
- Let users log by email and then by code from the email ( magic link / passwordless authentication )
- Can the register endpoint be made in a way that user needs to verify the email?
- Is there any way maybe from a spring cloud gateway client to generate another access or refresh token for the session after user changed it's firstName, lastName, etc ?
The dependency i'm using in my auth server is spring boot starter authorization server.