[Stuart Maskell] Microsoft Blazor Web API with JWT Authentication
Grab the article at https://medium.com/@st.mas29/microsoft-blazor-web-api-with-jwt-authentication-part-1-f33a44abab9d
- Run: "dotnet run";
- Run http://localhost:5000;
- Abc;
- I firstly updated my WebAssembly Template version for ASP.NET Core to 3.2.1 via: "dotnet new -i Microsoft.AspNetCore.Components.WebAssembly.Templates::3.2.1";
- I created a new Blazor Server app with a self-named directory ("-o" flag) and the disabling of HTTPS ("--no-https" flag) via the Microsoft tutorial and the suggested command: "dotnet new blazorserver -o BlazorApp --no-https";
- "I would like to share a guide on how to implement a JWT Authentication system into a Dotnet Core 2 Web API project that uses Microsofts new Blazor, but this same guide can be used for regular Asp.Net core 2 Web API's.";
Thanks goes out to Stuart Maskell for the FREE stuff!
- Stuart Maskell's Medium ...Abc...