Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 17 of 17 for read_own_items (0.1 seconds)

  1. docs/uk/docs/advanced/security/oauth2-scopes.md

    Сама операція шляху також оголошує scope «items», отже він також буде у списку `security_scopes.scopes`, переданому до `get_current_user`.
    
    Ось як виглядає ієрархія залежностей і scopes:
    
    - Операція шляху `read_own_items` має:
        - Потрібні scopes `["items"]` із залежністю:
        - `get_current_active_user`:
            - Функція-залежність `get_current_active_user` має:
                - Потрібні scopes `["me"]` із залежністю:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 20.2K bytes
    - Click Count (0)
  2. docs/de/docs/advanced/security/oauth2-scopes.md

    So sieht die Hierarchie der Abhängigkeiten und Scopes aus:
    
    * Die *Pfadoperation* `read_own_items` hat:
        * Erforderliche Scopes `["items"]` mit der Abhängigkeit:
        * `get_current_active_user`:
            * Die Abhängigkeitsfunktion `get_current_active_user` hat:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 15.7K bytes
    - Click Count (0)
  3. docs/pt/docs/advanced/security/oauth2-scopes.md

    Aqui está como a hierarquia de dependências e escopos parecem:
    
    * A *operação de rota* `read_own_items` possui:
        * Escopos necessários `["items"]` com a dependência:
        * `get_current_active_user`:
            *  A função de dependência `get_current_active_user` possui:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 14.9K bytes
    - Click Count (0)
  4. docs/es/docs/advanced/security/oauth2-scopes.md

    Así es como se ve la jerarquía de dependencias y scopes:
    
    * La *path operation* `read_own_items` tiene:
        * Scopes requeridos `["items"]` con la dependencia:
        * `get_current_active_user`:
            * La función de dependencia `get_current_active_user` tiene:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 14.1K bytes
    - Click Count (0)
  5. fastapi/param_functions.py

        from fastapi import Security, FastAPI
    
        from .db import User
        from .security import get_current_active_user
    
        app = FastAPI()
    
        @app.get("/users/me/items/")
        async def read_own_items(
            current_user: Annotated[User, Security(get_current_active_user, scopes=["items"])]
        ):
            return [{"item_id": "Foo", "owner": current_user.username}]
        ```
        """
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 68K bytes
    - Click Count (0)
  6. docs/fr/docs/advanced/security/oauth2-scopes.md

    Voici à quoi ressemble la hiérarchie des dépendances et des scopes :
    
    * Le *chemin d’accès* `read_own_items` a :
        * Des scopes requis `["items"]` avec la dépendance :
        * `get_current_active_user` :
            * La fonction de dépendance `get_current_active_user` a :
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 15.5K bytes
    - Click Count (0)
  7. docs/ko/docs/advanced/security/oauth2-scopes.md

    *경로 처리* 자체도 스코프 `"items"`를 선언하므로, 이것 또한 `get_current_user`에 전달되는 `security_scopes.scopes` 목록에 포함됩니다.
    
    의존성과 스코프의 계층 구조는 다음과 같습니다:
    
    * *경로 처리* `read_own_items`는:
        * 의존성과 함께 요구 스코프 `["items"]`를 가집니다:
        * `get_current_active_user`:
            * 의존성 함수 `get_current_active_user`는:
                * 의존성과 함께 요구 스코프 `["me"]`를 가집니다:
                * `get_current_user`:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 15.7K bytes
    - Click Count (0)
Back to Top