Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 15 for openIdConnect (0.14 seconds)

  1. tests/test_security_openid_connect_optional.py

                        "operationId": "read_current_user_users_me_get",
                        "security": [{"OpenIdConnect": []}],
                    }
                }
            },
            "components": {
                "securitySchemes": {
                    "OpenIdConnect": {
                        "type": "openIdConnect",
                        "openIdConnectUrl": "/openid",
                    }
                }
            },
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Fri Jun 30 18:25:16 GMT 2023
    - 2.4K bytes
    - Click Count (0)
  2. tests/test_security_openid_connect_description.py

                        "security": [{"OpenIdConnect": []}],
                    }
                }
            },
            "components": {
                "securitySchemes": {
                    "OpenIdConnect": {
                        "type": "openIdConnect",
                        "openIdConnectUrl": "/openid",
                        "description": "OpenIdConnect security scheme",
                    }
                }
            },
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Mon Nov 24 19:03:06 GMT 2025
    - 2.4K bytes
    - Click Count (0)
  3. fastapi/security/__init__.py

    from .oauth2 import OAuth2PasswordRequestFormStrict as OAuth2PasswordRequestFormStrict
    from .oauth2 import SecurityScopes as SecurityScopes
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sun Dec 20 18:50:00 GMT 2020
    - 881 bytes
    - Click Count (0)
  4. tests/test_security_openid_connect.py

                        "operationId": "read_current_user_users_me_get",
                        "security": [{"OpenIdConnect": []}],
                    }
                }
            },
            "components": {
                "securitySchemes": {
                    "OpenIdConnect": {
                        "type": "openIdConnect",
                        "openIdConnectUrl": "/openid",
                    }
                }
            },
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Mon Nov 24 19:03:06 GMT 2025
    - 2.3K bytes
    - Click Count (0)
  5. fastapi/security/open_id_connect_url.py

    from typing import Annotated, Optional
    
    from annotated_doc import Doc
    from fastapi.openapi.models import OpenIdConnect as OpenIdConnectModel
    from fastapi.security.base import SecurityBase
    from starlette.exceptions import HTTPException
    from starlette.requests import Request
    from starlette.status import HTTP_401_UNAUTHORIZED
    
    
    class OpenIdConnect(SecurityBase):
        """
        OpenID Connect authentication class. An instance of it would be used as a
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 21:25:59 GMT 2025
    - 3.1K bytes
    - Click Count (0)
  6. fastapi/openapi/models.py

        flows: OAuthFlows
    
    
    class OpenIdConnect(SecurityBase):
        type_: SecuritySchemeType = Field(
            default=SecuritySchemeType.openIdConnect, alias="type"
        )
        openIdConnectUrl: str
    
    
    SecurityScheme = Union[APIKey, HTTPBase, OAuth2, OpenIdConnect, HTTPBearer]
    
    
    class Components(BaseModelWithConfig):
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Dec 27 12:54:56 GMT 2025
    - 15.1K bytes
    - Click Count (0)
  7. docs/en/docs/reference/security/index.md

        HTTPBasicCredentials,
        HTTPBearer,
        HTTPDigest,
        OAuth2,
        OAuth2AuthorizationCodeBearer,
        OAuth2PasswordBearer,
        OAuth2PasswordRequestForm,
        OAuth2PasswordRequestFormStrict,
        OpenIdConnect,
        SecurityScopes,
    )
    ```
    
    ## API Key Security Schemes
    
    ::: fastapi.security.APIKeyCookie
    
    ::: fastapi.security.APIKeyHeader
    
    ::: fastapi.security.APIKeyQuery
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 1.6K bytes
    - Click Count (0)
  8. docs/uk/docs/tutorial/security/index.md

        * Але є один окремий «потік», який ідеально підходить для реалізації автентифікації всередині одного додатку:
            * `password`: у наступних розділах буде приклад використання цього потоку.
    * `openIdConnect`: дозволяє автоматично виявляти параметри автентифікації OAuth2.
        * Це автоматичне виявлення визначається у специфікації OpenID Connect.
    
    
    /// tip | Порада
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Tue Jun 24 18:57:48 GMT 2025
    - 6.8K bytes
    - Click Count (0)
  9. docs/ru/docs/tutorial/security/index.md

        * Но есть один конкретный "поток", который может быть идеально использован для обработки аутентификации непосредственно в том же приложении:
            * `password`: в некоторых следующих главах будут рассмотрены примеры этого.
    * `openIdConnect`: способ определить, как автоматически обнаруживать данные аутентификации OAuth2.
        * Это автоматическое обнаружение определено в спецификации OpenID Connect.
    
    
    /// tip | Подсказка
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Thu Dec 11 21:25:03 GMT 2025
    - 8.4K bytes
    - Click Count (0)
  10. docs/de/docs/tutorial/security/index.md

            * `password`: Einige der nächsten Kapitel werden Beispiele dafür behandeln.
    * `openIdConnect`: bietet eine Möglichkeit, zu definieren, wie OAuth2-Authentifizierungsdaten automatisch ermittelt werden können.
        * Diese automatische Erkennung ist es, die in der OpenID Connect Spezifikation definiert ist.
    
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Sep 20 15:10:09 GMT 2025
    - 5.2K bytes
    - Click Count (0)
Back to Top