The Eagle
The Eagle

Reputation: 457

Dotnet Core 2.2 Authentication Builder: AddMicrosoftAccount vs AddAzureAD

What is the difference between AddMicrosoftAccount and AddAzureAD in the Authentication Builder in DotNet Core 2.2?

Upvotes: 1

Views: 230

Answers (1)

juunas
juunas

Reputation: 58863

AddMicrosoftAccount adds the authentication scheme for personal Microsoft accounts, aka Live accounts / Hotmail accounts / Outlook accounts.

AddAzureAD adds the authentication scheme for organizational Azure Active Directory login. Users can then login using their Office 365/Azure AD account.

Upvotes: 1

Related Questions