I have a C# controller api which is decorated with the [Authorize]
attribute.
[HttpGet]
[Authorize]
public ActionResult<int> GetAuthorizationDetails()
{
var userIdentification = User.Claims; //this is part of System.Security.Claims ...
var accessTokenDuration = ...; // Is there a way to catch the access token details?
}
The url above redirects me to the authentication site, where after logging in, I am redirected back to my website.
I know how to retrieve the user information which is in the claims --> User.Claims
.
But it should also have a token which shows the token expiry time. Is there a way to read access token in C# --> something similar to User.Claims
that retrieves the user information.
Thanks,