Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 10 for read_own_items (0.08 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/zh-hant/docs/advanced/security/oauth2-scopes.md

    路徑操作本身也宣告了 `"items"` 這個 scope,因此它也會包含在傳給 `get_current_user` 的 `security_scopes.scopes` 中。
    
    以下是相依性與 scopes 的階層關係:
    
    - 路徑操作 `read_own_items` 具有:
      - 需要的 scopes `["items"]`,並有相依性:
      - `get_current_active_user`:
        - 相依函式 `get_current_active_user` 具有:
          - 需要的 scopes `["me"]`,並有相依性:
          - `get_current_user`:
            - 相依函式 `get_current_user` 具有:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 12.7K bytes
    - Click Count (0)
  2. docs/zh/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 17:06:37 GMT 2026
    - 13K bytes
    - Click Count (0)
  3. docs/ja/docs/advanced/security/oauth2-scopes.md

    path operation 自体も `"items"` スコープを宣言するため、これも `get_current_user` に渡される `security_scopes.scopes` に含まれます。
    
    依存関係とスコープの階層は次のようになります:
    
    - *path operation* `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:07:17 GMT 2026
    - 16.6K bytes
    - Click Count (0)
  4. docs/tr/docs/advanced/security/oauth2-scopes.md

    *Path operation*'ın kendisi de `"items"` scope'unu tanımlar; bu da `get_current_user`'a geçirilen `security_scopes.scopes` listesinde yer alır.
    
    Dependency'lerin ve scope'ların hiyerarşisi şöyle görünür:
    
    * *Path operation* `read_own_items` şunlara sahiptir:
        * Dependency ile gerekli scope'lar `["items"]`:
        * `get_current_active_user`:
            * `get_current_active_user` dependency fonksiyonu şunlara sahiptir:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 14.7K bytes
    - Click Count (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to Top