Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for openIdConnect (0.04 sec)

  1. tests/test_security_openid_connect_description.py

                        "security": [{"OpenIdConnect": []}],
                    }
                }
            },
            "components": {
                "securitySchemes": {
                    "OpenIdConnect": {
                        "type": "openIdConnect",
                        "openIdConnectUrl": "/openid",
                        "description": "OpenIdConnect security scheme",
                    }
                }
            },
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Mon Nov 24 19:03:06 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  2. tests/test_security_openid_connect.py

                        "operationId": "read_current_user_users_me_get",
                        "security": [{"OpenIdConnect": []}],
                    }
                }
            },
            "components": {
                "securitySchemes": {
                    "OpenIdConnect": {
                        "type": "openIdConnect",
                        "openIdConnectUrl": "/openid",
                    }
                }
            },
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Mon Nov 24 19:03:06 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  3. 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
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  4. 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):
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  5. docs/ru/docs/tutorial/security/index.md

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

      * Pero hay un "flujo" específico que puede usarse perfectamente para manejar la autenticación directamente en la misma aplicación:
        * `password`: algunos de los próximos capítulos cubrirán ejemplos de esto.
    * `openIdConnect`: tiene una forma de definir cómo descubrir automáticamente los datos de autenticación OAuth2.
      * Este descubrimiento automático es lo que se define en la especificación de OpenID Connect.
    
    /// tip | Consejo
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 10:15:01 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  7. docs/pt/docs/tutorial/security/index.md

        * Mas existe um “fluxo” específico que pode ser perfeitamente usado para resolver autenticação diretamente na mesma aplicação:
            * `password`: alguns dos próximos capítulos tratarão disso.
    * `openIdConnect`: tem uma forma para definir como descobrir automaticamente o dado da autenticação OAuth2.
        * Essa descoberta automática é o que é definido na especificação OpenID Connect.
    
    
    /// tip | Dica
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 10:17:03 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  8. 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.
    
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Sep 20 15:10:09 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/security/index.md

            * `authorizationCode`
        * But there is one specific "flow" that can be perfectly used for handling authentication in the same application directly:
            * `password`: some next chapters will cover examples of this.
    * `openIdConnect`: has a way to define how to discover OAuth2 authentication data automatically.
        * This automatic discovery is what is defined in the OpenID Connect specification.
    
    
    /// tip
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  10. docs/zh/docs/tutorial/security/index.md

            * `implicit`
            * `clientCredentials`
            * `authorizationCode`
        * 但是有一个特定的「流程」可以完美地用于直接在同一应用程序中处理身份认证:
            * `password`:接下来的几章将介绍它的示例。
    * `openIdConnect`:提供了一种定义如何自动发现 OAuth2 身份认证数据的方法。
        * 此自动发现机制是 OpenID Connect 规范中定义的内容。
    
    
    /// tip
    
    集成其他身份认证/授权提供者(例如Google,Facebook,X (Twitter),GitHub等)也是可能的,而且较为容易。
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 4.2K bytes
    - Viewed (0)
Back to top