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
Those who may have multiple valid issuers configured but still want to provide the JWKS data per issuer inside of a bundle (and not fetched via the metadata flow), we should allow passing an object to the jwks object that maps between issuer and JWKS. Currently, the user would have to do this out of band, and merge the keys into a single keys array:
{"allowed_issuers": ["https://foo.example.com","https://bar.example.com",],"jwks": {"keys": [{"kty": "RSA","n": "0uUZ4XpiWu4ds6SxR.....","e": "AQAB"},{ "more keys from all issuers": "here..."}]}}
In addition to this, we should allow passing a map of issuers -> keys.
Those who may have multiple valid issuers configured but still want to provide the JWKS data per issuer inside of a bundle (and not fetched via the metadata flow), we should allow passing an object to the
jwks
object that maps between issuer and JWKS. Currently, the user would have to do this out of band, and merge the keys into a singlekeys
array:In addition to this, we should allow passing a map of issuers -> keys.
The text was updated successfully, but these errors were encountered: