skip to Main Content

ASP.NET Core Sign In with JWT

im using JWT to Authentication, and I'm storing it in Cookies. I want to use HttpContext.SignInAsync to login, I saw a lot of example with basic Cookie Auth, but not with JWT. Here is my Startup.cs services.AddTransient<IUserRepository, UserRepository>(); services.AddTransient<ITokenService, TokenService>();…

VIEW QUESTION
Back To Top
Search