I am trying to use the authorization extensions, however, I don’t see the roles getting passed to the JWT token. Here is the decoded token…
Header
{"typ":"JWT","alg":"RS256","kid":"<Removed>"}
Body
{"iss":<Removed>,"sub":<Removed>,"aud":<removed>,"iat":<removed>,"exp":<removed>}
Also Claim rolesClaim = jwt.getClaim("https://access.control/roles");
comes back null.
So I don’t see the role at all. How do I find the role?