The "OpenID Connect Core 1.0" specification defines a few optional parameters to be used during the authentication request. This optional parameters are
The implemented Open Id Connect backend already implements nonce in
|
params["nonce"] = self.get_and_store_nonce(self.authorization_url(), state) |
It will be great to provide users the option to configure other optional parameters by defining some settings, for example for prompt we could have
SOCIAL_AUTH_OIDC_PROMPT = 'select_account'
The "OpenID Connect Core 1.0" specification defines a few optional parameters to be used during the authentication request. This optional parameters are
noncedisplaypromptmax_ageui_localesid_token_hintlogin_hintacr_valuesThe implemented Open Id Connect backend already implements
nonceinsocial-core/social_core/backends/open_id_connect.py
Line 133 in 7066da9
It will be great to provide users the option to configure other optional parameters by defining some settings, for example for prompt we could have