Allan Xu
Allan Xu

Reputation: 9298

B2C support for Java Web Application authentication

When I go through Azure AD B2C documentation, I notice there is no code example or mention of Java Web apps and APIs as part of examples. We have good examples for nodejs and dotnet apps, but Java web app example is missing:

https://learn.microsoft.com/en-us/azure/active-directory-b2c/integrate-with-app-code-samples#web-apps-and-apis

Does this mean that Java web applications must implement B2C authentication at the protocol REST call level?

Upvotes: 0

Views: 708

Answers (1)

rbrayb
rbrayb

Reputation: 46720

There are some Java samples here:

  • Java web application using the MSAL4J to sign in users with Azure AD

  • A Java web application using Spring Security to sign in users with Azure AD

  • A Java web application using the MSAL4J to sign in users Azure AD B2C

They use the MSAL4J library.

Upvotes: 1

Related Questions