How to check whether the current JWT Token is expired or not in .NET Core application.
string token = await _httpContextAccessor.HttpContext.GetTokenAsync("access_token");
I got the token value using above code. Similar i need a way to find the token is expired or not.