We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4528261 commit db76a20Copy full SHA for db76a20
fastapi_azure_auth/openid_config.py
@@ -14,6 +14,14 @@
14
15
16
class HttpClientConfig(TypedDict):
17
+ """
18
+ Configuration for the HTTP client used to fetch the OpenID configuration.
19
+
20
+ verify - (optional) Either `True` to use an SSL context with the default CA bundle,
21
+ `False` to disable verification, or an instance of `ssl.SSLContext` to use a custom context.
22
+ trust_env - (optional) Enables or disables usage of environment variables for configuration.
23
24
25
verify: NotRequired[ssl.SSLContext | bool]
26
trust_env: NotRequired[bool]
27
0 commit comments