Skip to content
Advertisement

Spring Boot OAuth2.0 with Azure Authentication Error – Missing required “user name” attribute name in UserInfoEndpoint for Client Registration: azure

I am trying to login using correct credentials and I am getting following error. I have created Azure AD B2C application following spring starters described on Azure website. User created in Azure Active Directory is member of two groups test2 and test3. I have another spring application, authentication and authorization is working in that application but not in this one. Configuration wise both applications are similar.

JavaScript

My Spring Security Code

JavaScript

Advertisement

Answer

You shoud specify the username attribute of userinfo endpoint response in spring oauth2 provider configuration. Response of Azure userinfo endpoint is like below,

JavaScript

The corresponding configuration is

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement