Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 616 for externa (0.08 sec)

  1. docs/es/docs/advanced/openapi-callbacks.md

    El proceso que ocurre cuando tu aplicación API llama a la *API externa* se llama un "callback". Porque el software que escribió el desarrollador externo envía un request a tu API y luego tu API hace un *callback*, enviando un request a una *API externa* (que probablemente fue creada por el mismo desarrollador).
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 16:33:45 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  2. docs/pt/docs/advanced/openapi-callbacks.md

    Então sua API irá (vamos imaginar):
    
    * Enviar a fatura para algum cliente do desenvolvedor externo.
    * Coletar o dinheiro.
    * Enviar a notificação de volta para o usuário da API (o desenvolvedor externo).
        * Isso será feito enviando um request POST (de *sua API*) para alguma *API externa* fornecida por esse desenvolvedor externo (este é o "callback").
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 20:32:40 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  3. docs/es/docs/tutorial/metadata.md

    * `externalDocs`: un `dict` que describe documentación externa con:
        * `description`: un `str` con una breve descripción para la documentación externa.
        * `url` (**requerido**): un `str` con la URL para la documentación externa.
    
    ### Crear metadata para etiquetas { #create-metadata-for-tags }
    
    Probemos eso en un ejemplo con etiquetas para `users` y `items`.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/metadata.md

    * `externalDocs`: um `dict` descrevendo a documentação externa com:
        * `description`: uma `str` com uma breve descrição da documentação externa.
        * `url` (**obrigatório**): uma `str` com a URL da documentação externa.
    
    ### Criar Metadados para tags { #create-metadata-for-tags }
    
    Vamos tentar isso em um exemplo com tags para `users` e `items`.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  5. docs/de/docs/advanced/openapi-callbacks.md

    Daher werden wir dasselbe Wissen nutzen, um zu dokumentieren, wie die *externe API* aussehen sollte ... indem wir die *Pfadoperation(en)* erstellen, welche die externe API implementieren soll (die, welche Ihre API aufruft).
    
    /// tip | Tipp
    
    Wenn Sie den Code zum Dokumentieren eines Callbacks schreiben, kann es hilfreich sein, sich vorzustellen, dass Sie dieser *externe Entwickler* sind. Und dass Sie derzeit die *externe API* implementieren, nicht *Ihre API*.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 10 13:54:34 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  6. docs/en/docs/external-links.md

    # External Links
    
    **FastAPI** has a great community constantly growing.
    
    There are many posts, articles, tools, and projects, related to **FastAPI**.
    
    You could easily use a search engine or video platform to find many resources related to FastAPI.
    
    /// info
    
    Before, this page used to list links to external articles.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 10 12:28:40 UTC 2025
    - 917 bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/schema-extra-example.md

    You can set `"json_schema_extra"` with a `dict` containing any additional data you would like to show up in the generated JSON Schema, including `examples`.
    
    /// tip
    
    You could use the same technique to extend the JSON Schema and add your own custom extra info.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 20 15:55:38 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/extra-data-types.md

        * Pydantic ermöglicht auch die Darstellung als „ISO 8601 Zeitdifferenz-Kodierung“, <a href="https://docs.pydantic.dev/latest/concepts/serialization/#custom-serializers" class="external-link" target="_blank">siehe die Dokumentation für weitere Informationen</a>.
    * `frozenset`:
        * Wird in Requests und Responses wie ein `set` behandelt:
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Sep 20 15:10:09 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  9. docs/zh/docs/tutorial/extra-models.md

    在 OpenAPI 中可以使用 `anyOf` 定义。
    
    为此,请使用 Python 标准类型提示 <a href="https://docs.python.org/3/library/typing.html#typing.Union" class="external-link" target="_blank">`typing.Union`</a>:
    
    /// note | 笔记
    
    定义 <a href="https://docs.pydantic.dev/latest/concepts/types/#unions" class="external-link" target="_blank">`Union`</a> 类型时,要把详细的类型写在前面,然后是不太详细的类型。下例中,更详细的 `PlaneItem` 位于 `Union[PlaneItem,CarItem]` 中的 `CarItem` 之前。
    
    ///
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. docs/es/docs/tutorial/extra-models.md

    Para hacerlo, usa la anotación de tipos estándar de Python <a href="https://docs.python.org/3/library/typing.html#typing.Union" class="external-link" target="_blank">`typing.Union`</a>:
    
    /// note | Nota
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 16:33:45 UTC 2025
    - 7.6K bytes
    - Viewed (0)
Back to top