Replies: 1 comment 3 replies
-
you can disable it with OIDCPassClaimsAs or filter the claims with OIDCWhiteListedClaims |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
We are using mod_auth_openidc 2.4.7 in a setup with keycloak and spring-boot services.
As we POST an XMLHttpRequest from browser to our backend mod_auth_openidc adds all claims from accesstoken as a http-header to the request we don't need and, in our case, leads to a failed request.
We get a request containing about 20 http-header with keys like "oidc_claim_iss", "oidc_claim_private_customer_id", "oid_claim_family_name" and so on.
Is there a way to disable this? The headers are not added for a GET request.
One thing is: We don't need this
Secondly: This leads to en error if we have a "ß" in any headervalue. Values are encoded in UTF-8 (c3 9f), read as iso-8859. SpringBoot raises exception as "9f" is undefined in iso-8859.
Beta Was this translation helpful? Give feedback.
All reactions