How to decode a JWT token in .Net Core (C#)
Whilst building an API in .Net Core 3.1 recently I needed to decode a JWT token that we received from an authentication service. Here is a step by step guide explaining how to decode the JWT token in a .Net core application, in C#. Install the System.IdentityModel.Tokens.Jwt Nuget Package Add using directive to C# file … Read more