SimpleAuthentication
SimpleAuthentication copied to clipboard
A library to easily integrate Authentication in ASP.NET Core projects.
The method accepts an IEnumerable of string because the IEnumerable type doesn't support the Select extension method
I had an idea for a new extension method that I started using in my projects After sign-in task, I create a collection of claims. Usually this collection ends with...
There is no feature to have a refresh token during the login phase. It would be nice to have a configurable parameter in the settings that enables the functionality. If...
Add authentication with Auth0: https://dev.to/kasuken/securing-net-6-minimal-api-with-auth0-4h5f
Added a contribution with the basic Auth0 authentication system. If you want to change auth0 settings you can create a new API from the Auth0 Dashboard.
I gave a fast look at Microsoft.IdentityModel.JsonWebTokens repository and I noticed that the methods signature like ValidateTokenAsync method don't require the CancellationToken parameter. However, even though Microsoft didn't add this...