I\'m using Owin with JWTBearerAuthentication to authorize users and validate their tokens. I\'m doing it like this:
public class Startup { public void Config
Something like this might help:
var identity = User.Identity as ClaimsIdentity; return identity.Claims.Select(c => new { Type = c.Type, Value = c.Value });