Add Support for Authentication
Learn to enable support for authentication in our Blazor WebAssembly application.
We'll cover the following...
We’ll implement the actual integration of our Blazor WebAssembly application with Auth0.
Install the authentication package
As our first step, we install Microsoft’s authentication package for Blazor WebAssembly.
We make the Client
folder as our current folder and run the following command in a terminal window:
dotnet add package Microsoft.AspNetCore.Components.WebAssembly.Authentication
After a few ...