When I hit /auth/realms/{realm}/protocol/openid-connect/userinfo
I get very little details about the user.
{
"sub": "ed291f7a-a799-4d8b-a776-e634d727668c",
"email_verified": true,
"preferred_username": "admin"
}
More info (such as role lists) is inside the access token that I'm actually sending to this endpoint. I could just decode the access token instead of hitting this endpoint, is this expected/normal behavior or am I doing something wrong?
userinfo
endpoint – Valencia