1 files changed, 7 insertions, 1 deletions
diff --git a/develop/usage/configuration/config_documentation.html b/develop/usage/configuration/config_documentation.html
index 5f394c08b7..933801dc7b 100644
--- a/develop/usage/configuration/config_documentation.html
+++ b/develop/usage/configuration/config_documentation.html
@@ -2713,8 +2713,14 @@ values are <code>client_secret_basic</code> (default), <code>client_secret_post<
<code>none</code>.</p>
</li>
<li>
+<p><code>pkce_method</code>: Whether to use proof key for code exchange when requesting
+and exchanging the token. Valid values are: <code>auto</code>, <code>always</code>, or <code>never</code>. Defaults
+to <code>auto</code>, which uses PKCE if supported during metadata discovery. Set to <code>always</code>
+to force enable PKCE or <code>never</code> to force disable PKCE.</p>
+</li>
+<li>
<p><code>scopes</code>: list of scopes to request. This should normally include the "openid"
-scope. Defaults to ["openid"].</p>
+scope. Defaults to <code>["openid"]</code>.</p>
</li>
<li>
<p><code>authorization_endpoint</code>: the oauth2 authorization endpoint. Required if
|