You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
provider_discovery_uri (str): URL of the SSO server (the .well-known/openid-configuration part is added to this path).
55
56
Some providers like the keycloak provider can instead generate this settings by combining 'keycloak_base_uri' (str) and
56
57
'keycloak_realm' (str) settings.
57
-
oidc_callback_path (str): the path used to call this library during the login round-trips, the default is "/oidc-callback/".
58
-
callback_uri_name (str): the route giving the path for oidc_callback_path that you can use instead of oidc_callback_path
58
+
oidc_paths_prefix (str): the string prefix for all paths created by the OIDCHelper when creating routes in get_urlpatterns, the default is "{op_name}".
59
+
oidc_callback_path (str): the path used to call this library during the login round-trips, the default is "{oidc_paths_prefix}-callback".
60
+
if you use namespaced and prefixed routes for the routes created via get_urlpatterns prefer using callback_uri_name.
61
+
callback_uri_name (str): the route giving the path for oidc_callback_path that you can use instead of oidc_callback_path.
59
62
post_logout_redirect_uri (str): the URI where a user should be redirected to on logout success
60
63
post_login_uri_failure (str): the URI where a user should be redirected to on login failure
61
64
post_login_uri_success (str): the URI a user should be redirected to on login success if no redirection url where provided
0 commit comments