Mordeo
❔ New .NET Core Web API app. Guidelines for setting up authentication & authorization?
There are plenty of blog posts, tutorials, etc out there. They should all follow the same theme and should be using the same Microsoft supported code / packages
50 replies
❔ New .NET Core Web API app. Guidelines for setting up authentication & authorization?
Then you need to modify your app startup and insert middlewares to check for the JWT, validate them, and reject or deny requests. Also describes in the article
50 replies
❔ New .NET Core Web API app. Guidelines for setting up authentication & authorization?
If you're implementing your own JWT auth, you will need code to create a JWT. An API endpoints stands between that code and your client. The JWT nuget package referenced in the article will help you do that
50 replies