Purpose of this package over Microsoft.AspNetCore.Components.WebAssembly.Authentication #607
-
Hello there, I was redirected here from an IdP documentation page, saying one should use the The readme simply states:
Could you show up the issues with the existing package provided by Microsoft, and how this package does things better? 🤓 With kind regards |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Beta Was this translation helpful? Give feedback.
Who told you that you 'must' use this package instead of
Microsoft.AspNetCore.Components.WebAssembly.Authentication
? Whoever told you might know something 😉The statement
The right way to use OpenIdConnect on Blazor
is just a slogan, but to discover "why" I invite you to run the example application, and explore the library featuresWe implemented this because we had previous experience using
oidc-client.js
from https://github.com/IdentityModel/oidc-client-js we keep up to date with its successor https://github.com/authts/oidc-client-ts. From our experience,oidc-client.js
is a great implementation of OpenIDConnect. Probably the implementation inAuthenticationService.js
from Microso…