early-oil-83208
11/22/2023, 11:07 AMauthorization
header.
Is there a reason this is specifically an OpenId Connect ID token, or does it just match that convention?
The example isn't really using an OIDC flow.
From usage, it seems like it's an internal token intended as something like a session token, to propagate authentication information to a downstream service.
If I remember correctly, the id_token
is intended for use by the client rather than being propagated downstream.
Sorry if this is a philosophical point, I'm just trying to understand the intend usage to I don't use this for the wrong reasons 😅
The idea of swapping an external authentication (the session info) for an internal represenation (a JWT) is what I'm looking for, so the way it works seems to fit, but the mention of OIDC has confused me a little bit.numerous-umbrella-61726
11/22/2023, 11:30 AMearly-oil-83208
11/22/2023, 11:32 AMicy-manchester-83109
11/23/2023, 7:07 AMearly-oil-83208
11/23/2023, 6:49 PMid_token
, which it is not.
It just matching the claim format for an OIDC id_token, but without the same semantics and restrictions (e.g. only intended for the client, must match aud
claim, etc).icy-manchester-83109
11/24/2023, 7:30 AM