You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support explicit configuration of id_token_signed_response_alg in the openid-clientissuer.Client configuration. Currently, the properties configured when instantiating a issuer.Client are:
Pass configuration object containing id_token_signed_response_alg to issuer.Client in getOIDCClient. Allow this property to be explicitly set via environment variable or obtained from id_token_signing_alg_values_supported field in the issuer metadata during OP discovery when RS256 is not included by the OP.
- support to configure `id_token_signed_response_alg` field in the
configuration object passed to `issuer.Client` in
`src/lib/server/auth.ts`.
- allow `id_token_signed_response_alg` to be set from environment
variable `OIDConfig.ID_TOKEN_SIGNED_RESPONSE_ALG` or obtained via
OP metadata during issuer discovery when `RS256` is not included.
Describe your feature request
Support explicit configuration of
id_token_signed_response_alg
in the openid-clientissuer.Client
configuration. Currently, the properties configured when instantiating aissuer.Client
are:From
src/lib/server/auth.ts
:Screenshots (if relevant)
N/A
Implementation idea
Pass configuration object containing
id_token_signed_response_alg
toissuer.Client
ingetOIDCClient
. Allow this property to be explicitly set via environment variable or obtained fromid_token_signing_alg_values_supported
field in the issuer metadata during OP discovery whenRS256
is not included by the OP.Proposed data structure to pass to
issuer.Client
:The text was updated successfully, but these errors were encountered: