Implementing JWT Authentication in ASP.NET Core Web API: Building an Authentication Center

This series provides a concise guide on using JWT (JSON Web Tokens) to create tokens for authentication in an ASP.NET Core Web API. 1. Create a ASP.NET Core Web API Project We'll be using Visual Studio 2019 with .NET Core 3.1. 2. Add JWT Services 2.1 Install the NuGet Package Install System.IdentityModel.Tokens.Jwt via NuGet Package Manager. 2. ...

Posted on Sun, 07 Jun 2026 18:09:41 +0000 by kitcorsa

Configuring Swagger Documentation for ASP.NET Core Web APIs

Project Initialization To begin, launch Visual Studio and create a new project using the "ASP.NET Core Web Application" template. After naming the solution and selecting a location, choose the API template targeting .NET Core (specifically version 3.1). For simplicity in local testing, you may uncheck the "Configure for HTTPS" option found in t ...

Posted on Sat, 09 May 2026 01:36:54 +0000 by mjm