csadam
csadam

Reputation: 481

Azure.Identity or Azure.Services.AppAuthentication?

Looks like there are two competing libraries for token authentication in Azure:

How can I decide which one to use?

Upvotes: 1

Views: 1389

Answers (1)

Sruthi J
Sruthi J

Reputation: 1602

Azure.Identity library uses MSAL and Azure.Services.AppAuthentication library uses ADAL.

MSAL provides multiple benefits over ADAL including incremental consent, richer single sign-on experiences, support for personal Microsoft accounts, use of standards-based protocols, and so on.

So, We recommend using Azure.Identity library since it uses MSAL.

Upvotes: 5

Related Questions