Hello,
I am using a userinfo endpoint. If you return a claim of type boolean in the id_token if is correctly marked as a boolean in the token.
If you are using the uerinfo endpoint and create a json there, if is returned as a string with value "False" or "True". Is there a possibility to configure this, or is this a bug or non-implemented feature in the current solution?
Example Userinfo:
{
"sub": "",
"email": "someemail@email.com",
"locale": "de",
"extension_residency": "False"
}
Example Token
{
"typ": "JWT",
"alg": "RS256",
"kid": ""
}.{
"exp": 1651119806,
"nbf": 1651033406,
"ver": "1.0",
"iss": "",
"sub": "",
"aud": "",
"acr": "**",
"nonce": "defaultNonce",
"iat": 1651033406,
"auth_time": 1651033406,
"locales": "de",
extension_residency": false*
}.[Signature]


