Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 13 for larla (0.04 seconds)

  1. docs/tr/docs/features.md

    Güvenlik ve kimlik doğrulama entegredir. Veritabanları veya veri modelleriyle ilgili hiçbir taviz yoktur.
    
    OpenAPI’da tanımlanan tüm güvenlik şemaları, şunlar dâhil:
    
    * HTTP Basic.
    * **OAuth2** (ayrıca **JWT token**’larla). Şu eğitime göz atın: [OAuth2 with JWT](tutorial/security/oauth2-jwt.md).
    * API anahtarları:
        * Header’larda.
        * Query parametrelerinde.
        * Cookie’lerde vb.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  2. docs/tr/docs/tutorial/bigger-applications.md

        ...
    ```
    
    ...prefix’in sonunda `/` olmamalıdır.
    
    Yani bu örnekte prefix `/items` olur.
    
    Ayrıca, bu router içindeki tüm *path operation*’lara uygulanacak bir `tags` listesi ve ek `responses` da ekleyebiliriz.
    
    Ve router’daki tüm *path operation*’lara eklenecek, her request için çalıştırılıp çözülecek bir `dependencies` listesi de ekleyebiliriz.
    
    /// tip | İpucu
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 20.3K bytes
    - Click Count (0)
  3. docs/tr/docs/advanced/security/oauth2-scopes.md

    ///
    
    {* ../../docs_src/security/tutorial005_an_py310.py hl[157] *}
    
    ## *Path operation*'larda ve dependency'lerde scope tanımlama { #declare-scopes-in-path-operations-and-dependencies }
    
    Artık `/users/me/items/` için olan *path operation*'ın `items` scope'unu gerektirdiğini tanımlıyoruz.
    
    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)
  4. docs/tr/docs/tutorial/metadata.md

    Bu parametre, her tag için bir sözlük (dictionary) içeren bir liste alır.
    
    Her sözlük şunları içerebilir:
    
    * `name` (**zorunlu**): *path operation*'larda ve `APIRouter`'larda `tags` parametresinde kullandığınız tag adıyla aynı olan bir `str`.
    * `description`: tag için kısa bir açıklama içeren `str`. Markdown içerebilir ve doküman arayüzünde gösterilir.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 6.2K bytes
    - Click Count (0)
  5. docs/tr/docs/tutorial/dependencies/global-dependencies.md

    [`dependencies`'i *path operation decorator*'larına ekleyebildiğiniz](dependencies-in-path-operation-decorators.md) gibi, `FastAPI` uygulamasına da ekleyebilirsiniz.
    
    Bu durumda, uygulamadaki tüm *path operation*'lara uygulanırlar:
    
    {* ../../docs_src/dependencies/tutorial012_an_py310.py hl[17] *}
    
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 1.1K bytes
    - Click Count (0)
  6. docs/tr/docs/tutorial/background-tasks.md

    ## Özet { #recap }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 5K bytes
    - Click Count (0)
  7. docs/es/docs/tutorial/schema-extra-example.md

    Las claves del `dict` identifican cada ejemplo, y cada valor es otro `dict`.
    
    Cada `dict` específico del ejemplo en los `examples` puede contener:
    
    * `summary`: Descripción corta del ejemplo.
    * `description`: Una descripción larga que puede contener texto Markdown.
    * `value`: Este es el ejemplo real mostrado, e.g. un `dict`.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 9.5K bytes
    - Click Count (0)
  8. docs/tr/docs/tutorial/dependencies/dependencies-with-yield.md

    Response oluşturulmadan önce yalnızca `yield` satırına kadar olan (ve `yield` dahil) kod çalıştırılır:
    
    {* ../../docs_src/dependencies/tutorial007_py310.py hl[2:4] *}
    
    `yield` edilen değer, *path operation*'lara ve diğer dependency'lere enjekte edilen (injected) değerdir:
    
    {* ../../docs_src/dependencies/tutorial007_py310.py hl[4] *}
    
    Response'dan sonra `yield` satırını takip eden kod çalıştırılır:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 13.4K bytes
    - Click Count (0)
  9. docs/tr/docs/tutorial/dependencies/index.md

    read_items["/items/"]
    read_users["/users/"]
    
    common_parameters --> read_items
    common_parameters --> read_users
    ```
    
    Bu şekilde paylaşılan kodu bir kez yazarsınız ve onu *path operation*'larda çağırma işini **FastAPI** halleder.
    
    /// check | Ek bilgi
    
    Dikkat edin: Bunu "register" etmek ya da benzeri bir şey yapmak için özel bir class oluşturup **FastAPI**'ye bir yere geçirmeniz gerekmez.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 10.2K bytes
    - Click Count (0)
  10. docs/es/docs/tutorial/security/first-steps.md

    Y quieres tener una forma para que el frontend se autentique con el backend, usando un **username** y **password**.
    
    Podemos usar **OAuth2** para construir eso con **FastAPI**.
    
    Pero vamos a ahorrarte el tiempo de leer la larga especificación completa solo para encontrar esos pequeños fragmentos de información que necesitas.
    
    Usemos las herramientas proporcionadas por **FastAPI** para manejar la seguridad.
    
    ## Cómo se ve { #how-it-looks }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 8.8K bytes
    - Click Count (0)
Back to Top