'How to integrate OAuth with Azure B2C in Spring MVC?
I have to integrate OAut, Azure AD B2C for my existing spring mvc application. Appreciate any help on implementing the base.
Solution 1:[1]
This sample to Java Spring MVC web app that authenticates users with Azure AD B2C describes how to use Azure AD B2C Spring Boot Starter client library for Java to sign in users into your Azure AD tenant . It also makes use of Spring Oauth2 Client and Spring Web boot starters.
You need to Register the app in azure ad b2c,
Add the ,dependencies required in your pom.xml file,
Add the properties in application.yml using the values you created earlier in app registration.
You can follow further steps in detail for registration according to starter library
main Reference:
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | kavyasaraboju-MT |
