Tagged Questions
2
votes
1answer
154 views
How do I return multiple identities in a token with Thinktecture.IdentityServer.45?
In the Thinktecture.IdentityModel.45 library, I can get a Microsoft.IdentityModel.Claims.ClaimsIdentityCollection by executing something like this:
Dim handler = New JsonWebTokenHandler()
...
0
votes
0answers
121 views
JWT difference between ExpirationTime and ExpirationTime Claim
Using the JsonWebToken class from Thinktecture's Identity Model (4.5) tool set. The token has a property: ExpirationTime and a claim for Expiration. What is the difference between the two?
Just in ...