How implement JwtSecurityToken or JWT in C# .Net?

Hey @santaellaisaac2,
Honestly, I’m not aware of any detailed documentation on Microsoft’s website about using the JwtSecurityToken class. Actually, this class is nothing more than an implementation of the JWT specification, so I’m not really surprised about the lack of detailed documentation. I mean, the class just represents a JWT with no specific behavior.
Here is also a light introduction to JWTs structure.

I hope this helps.

1 Like