Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am building a Spring Boot application (MVC) and configured OIDC authentication. I would like to add a second-factor authentication step to my app, but I can't figure out how to do so. The flow that I want to implement is as follows:

  1. my app receives a valid OIDC token from the OIDC Provider (at this point Spring typically creates the session in my application. But I need to do some further validation steps before creating the session)
  2. my app makes an API call to a 3rd party service to check if further authentication steps are needed
  3. if needed asks the user for further data (an OTP or something else)
  4. my app makes an API call to a 3rd party service to check the further data received from the user
  5. if valid an application session is created by Spring

What is needed in terms of configurations/extensions to achieve the above?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
2.9k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...