Feature Request
The IdToken class is currently private. It would be nice to easily read claims from id token.
Motivation
Making it easy to read id token claims.
Description
IdToken class should be public. It already contains json parsing logic. The class should offer a method getClaims() which returns a List<Claim> where claim represents a string key and string value. Claim Value arrays could be "flattened" and be returned as multiple claims.
Alternatives or Workarounds
Do the json parsing yourself by copying code from IdToken class. :)
Feature Request
The IdToken class is currently private. It would be nice to easily read claims from id token.
Motivation
Making it easy to read id token claims.
Description
IdToken class should be public. It already contains json parsing logic. The class should offer a method getClaims() which returns a
List<Claim>where claim represents a string key and string value. Claim Value arrays could be "flattened" and be returned as multiple claims.Alternatives or Workarounds
Do the json parsing yourself by copying code from IdToken class. :)