From 32bf9e6d257cf571a9779d8993de4b64ab7ecff5 Mon Sep 17 00:00:00 2001 From: David Mueller Date: Tue, 24 Oct 2023 15:11:12 -0400 Subject: [PATCH] Update json-web-token.adoc --- modules/ROOT/pages/json-web-token.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ROOT/pages/json-web-token.adoc b/modules/ROOT/pages/json-web-token.adoc index 746f66018f..55c139f761 100644 --- a/modules/ROOT/pages/json-web-token.adoc +++ b/modules/ROOT/pages/json-web-token.adoc @@ -77,7 +77,7 @@ In this case, the JWK endpoint for the JWT builder (\https://:/jwt/i JWT consumers can retrieve JSON Web Key Set (JWKS) documents to reconstruct public keys to verify token signatures. JWKS documents are useful for JWT consumers that receive tokens from issuers that frequently rotate their signing keys, and for server administrators who do not want to manually maintain a keystore. -TOn configure Open Liberty to verify token signatures with JWKs, set the `jwkEnabled` attribute in the `jwtConsumer` element to `true`. Furthermore, The `jwkEndpointUrl` attribute must be set to a URI that provides the JWKS document that contains the public keys to use to verify the signatures of the tokens that received by this JWT consumer. +To configure Open Liberty to verify token signatures with JWKs, set the `jwkEnabled` attribute in the `jwtConsumer` element to `true`. Furthermore, The `jwkEndpointUrl` attribute must be set to a URI that provides the JWKS document that contains the public keys to use to verify the signatures of the tokens that received by this JWT consumer. [source, xml] ----