From 89175dfed068bd22ce69f47e19fbcb7daefc6268 Mon Sep 17 00:00:00 2001 From: Krishna Chaitanya Surapaneni Date: Fri, 8 Mar 2024 12:02:02 -0700 Subject: [PATCH] making sure it is in sync with servlet page --- .../pages/reactive/oauth2/client/authorization-grants.adoc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/reactive/oauth2/client/authorization-grants.adoc b/docs/modules/ROOT/pages/reactive/oauth2/client/authorization-grants.adoc index 0eabca0ca2..2a3e406115 100644 --- a/docs/modules/ROOT/pages/reactive/oauth2/client/authorization-grants.adoc +++ b/docs/modules/ROOT/pages/reactive/oauth2/client/authorization-grants.adoc @@ -107,7 +107,9 @@ For example, OpenID Connect defines additional OAuth 2.0 request parameters for One of those extended parameters is the `prompt` parameter. [NOTE] -OPTIONAL. Space delimited, case sensitive list of ASCII string values that specifies whether the Authorization Server prompts the End-User for reauthentication and consent. The defined values are: none, login, consent, select_account +==== +The `prompt` parameter is optional. Space delimited, case sensitive list of ASCII string values that specifies whether the Authorization Server prompts the End-User for re-authentication and consent. The defined values are: `none`, `login`, `consent`, and `select_account`. +==== The following example shows how to configure the `DefaultServerOAuth2AuthorizationRequestResolver` with a `Consumer` that customizes the Authorization Request for `oauth2Login()`, by including the request parameter `prompt=consent`.