future-dog-71233
02/15/2024, 11:28 PMend_session_endpoint
with an id_token_hint
fail with a encryption error from the jose jwt library.
The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed. go-jose/go-jose: error in cryptographic primitive
digging into the code, it seems that the logout endpoint, when a id token hint is provided, looks up the private key ( which returns the first key found, so the latest one ) which would then result in a failed decode since the id token being passed is an older one.
Is the a known issue or is there a way to fix this?