Issue validating JWT with .Net 5
-
Re: Issue validating JWT with .Net 5
Hi,
I implemented a Oauth2 workflow in my API (.NET 5) . I managed to validate a JWT using RSA algorithm, but using SymmetricKey still gives me an error "invalid_token -- The signature key was not found"
I read in the linked discussion it was an existing issue, I wonder if it is a .NET issue only, and if a solution with symmetric keys exists now ?
Thank you
-
@quent I don't have extensive experience with .NET5 various libraries, but when I last looked, only asymmetric keys were supported. If I were you, I'd ask this question on the .NET forums.
-
@dan yes seems it is still not working ... Thank you