This is an automated email from the ASF dual-hosted git repository.
sfirke pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new a724850c84 docs: jwks_uri addition to OAUTH provider (#24928)
a724850c84 is described below
commit a724850c8495293c4bfe7e1ac0937a8729fca196
Author: Ravi Kumar <[email protected]>
AuthorDate: Tue Sep 19 21:37:48 2023 +0530
docs: jwks_uri addition to OAUTH provider (#24928)
---
docs/docs/installation/configuring-superset.mdx | 1 +
1 file changed, 1 insertion(+)
diff --git a/docs/docs/installation/configuring-superset.mdx
b/docs/docs/installation/configuring-superset.mdx
index 11f57b4b9d..f1d3c96246 100644
--- a/docs/docs/installation/configuring-superset.mdx
+++ b/docs/docs/installation/configuring-superset.mdx
@@ -196,6 +196,7 @@ OAUTH_PROVIDERS = [
'access_token_params':{ # Additional parameters for calls
to access_token_url
'client_id':'myClientId'
},
+ 'jwks_uri':'https://myAuthorizationServe/adfs/discovery/keys', #
may be required to generate token
'access_token_headers':{ # Additional headers for calls to
access_token_url
'Authorization': 'Basic Base64EncodedClientIdAndSecret'
},