I created an web api project with built in authentication (when I created it I checked the "with authentication" box) and now I want to make it more secure. Is there a way to integrate the jwt authentication with the already existing authentication created by the project? I added this in ConfigureServices method from Startup.cs:
services.AddAuthentication()
.AddIdentityServerJwt();
I am very new to asp.net and jwt and I find it very hard to understand the processes.