_oauth
OAuthSettings
¶
Bases: BaseSettings
Minimal set of configurations needed for operating on the database (e.g for schema migrations).
Source code in fractal_server/config/_oauth.py
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
|
OAUTH_CLIENT_ID = None
class-attribute
instance-attribute
¶
ID of client.
OAUTH_CLIENT_NAME = None
class-attribute
instance-attribute
¶
The name of the client.
OAUTH_CLIENT_SECRET = None
class-attribute
instance-attribute
¶
Secret to authorise against the identity provider.
OAUTH_OIDC_CONFIG_ENDPOINT = None
class-attribute
instance-attribute
¶
OpenID configuration endpoint, for autodiscovery of relevant endpoints.
OAUTH_REDIRECT_URL = None
class-attribute
instance-attribute
¶
String to be used as redirect_url
argument in
fastapi_users.get_oauth_router
, and then in
httpx_oauth.integrations.fastapi.OAuth2AuthorizeCallback