Finished adding new OAuth Server Metadata URL setting to Google, GitHub, and Microsoft OAuth service configuration features.

This commit is contained in:
Matt Scott
2023-03-12 09:13:54 -04:00
parent 7ce1f09522
commit 1afe9b4908
6 changed files with 57 additions and 24 deletions

View File

@@ -24,6 +24,7 @@ def google_oauth():
access_token_url=Setting().get('google_token_url'),
authorize_url=Setting().get('google_authorize_url'),
jwks_url=Setting().get('google_oauth_jwks_url'),
server_metadata_url=Setting().get('google_oauth_metadata_url'),
client_kwargs={'scope': Setting().get('google_oauth_scope')},
fetch_token=fetch_google_token,
update_token=update_token)