JWTSimpleServer icon indicating copy to clipboard operation
JWTSimpleServer copied to clipboard

A lightweight, dynamic jwt server for ASP.NET Core

Results 5 JWTSimpleServer issues
Sort by recently updated
recently updated
newest added

Hi, Are there any plans to upgrade this to .NET Core 3.1? Please guide. Thanks.

We should not expose refresh token to the UI. Right? How would you handle it in right way? https://auth0.com/blog/refresh-tokens-what-are-they-and-when-to-use-them/

I'm refreshing every 30 sec: const config = { headers: {'Content-Type': 'application/x-www-form-urlencoded' }} axios.post('/token', qs.stringify({ refresh_token: refreshToken, grant_type: 'refresh_token' }), config) For each request, the returned access_token increases in size....

Adding a JWK for signing would be very useful. I was not able to find how to use the provided JWK class referenced in the project instead of a signingKey...

Within my implementation of IAuthenticationProvider. I'm using Microsoft.AspNetCore.Identity to validate user and password. And from what I know SignInManager and UserManager are registered as scope. But I agree that IAuthenticationProvider...