- Sort Score
- Num 10 results
- Language All
Results 1521 - 1530 of 1,590 for EXAMPLE (0.55 seconds)
-
docs/pt/docs/tutorial/first-steps.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 14.2K bytes - Click Count (0) -
docs/tr/docs/alternatives.md
> Requests, tüm zamanların en çok indirilen Python paketlerinden biridir Kullanımı çok basittir. Örneğin bir `GET` isteği yapmak için: ```Python response = requests.get("http://example.com/some/url") ``` Buna karşılık bir FastAPI API *path operation*’ı şöyle olabilir: ```Python hl_lines="1" @app.get("/some/url") def read_url(): return {"message": "Hello World"} ```
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 24K bytes - Click Count (0) -
docs/de/docs/tutorial/first-steps.md
#### Pfad { #path } „Pfad“ bezieht sich hier auf den letzten Teil der URL, beginnend mit dem ersten `/`. In einer URL wie: ``` https://example.com/items/foo ``` ... wäre der Pfad folglich: ``` /items/foo ``` /// info | Info Ein „Pfad“ wird häufig auch als „Endpunkt“ oder „Route“ bezeichnet. ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 14.9K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/security/oauth2-jwt.md
注意在程式碼中完全沒有明文密碼「`secret`」,我們只有雜湊後的版本。 /// <img src="/img/tutorial/security/image08.png"> 呼叫端點 `/users/me/`,你會得到類似這樣的回應: ```JSON { "username": "johndoe", "email": "johndoe@example.com", "full_name": "John Doe", "disabled": false } ``` <img src="/img/tutorial/security/image09.png"> 如果你打開開發者工具,可以看到送出的資料只包含權杖;密碼只會在第一次請求(用來驗證使用者並取得 access token)時送出,之後就不會再送:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 10.1K bytes - Click Count (0) -
docs/zh/docs/tutorial/first-steps.md
这个实例将是创建你所有 API 的主要交互对象。 ### 步骤 3:创建一个*路径操作* { #step-3-create-a-path-operation } #### 路径 { #path } 这里的「路径」指的是 URL 中从第一个 `/` 起的后半部分。 所以,在一个这样的 URL 中: ``` https://example.com/items/foo ``` ...路径会是: ``` /items/foo ``` /// info 「路径」也通常被称为「端点」或「路由」。 /// 开发 API 时,「路径」是用来分离「关注点」和「资源」的主要手段。 #### 操作 { #operation }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 13.3K bytes - Click Count (0) -
docs/zh/docs/tutorial/security/oauth2-jwt.md
注意,代码中的任何地方都没有明文密码 “`secret`”,我们只有它的哈希版本。 /// <img src="/img/tutorial/security/image08.png"> 调用 `/users/me/` 端点,你将得到如下响应: ```JSON { "username": "johndoe", "email": "johndoe@example.com", "full_name": "John Doe", "disabled": false } ``` <img src="/img/tutorial/security/image09.png"> 如果你打开开发者工具,你会看到发送的数据只包含令牌。密码只会在第一个请求中用于认证用户并获取访问令牌,之后就不会再发送密码了:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 10.1K bytes - Click Count (0) -
docs/uk/docs/tutorial/first-steps.md
### Крок 3: створіть *операцію шляху* { #step-3-create-a-path-operation } #### Шлях { #path } «Шлях» тут означає останню частину URL, починаючи з першого `/`. Отже, у такому URL, як: ``` https://example.com/items/foo ``` ...шлях буде: ``` /items/foo ``` /// info «Шлях» також зазвичай називають «ендпоінтом» або «маршрутом». ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 18.7K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.21.md
es) feature allows any existing storage driver that supports dynamic provisioning to be used as an ephemeral volume with the volume’s lifecycle bound to the Pod. It can be used to provide scratch storage that is different from the root disk, for example persistent memory, or a separate local disk on that node. All StorageClass parameters for volume provisioning are supported. All features supported with PersistentVolumeClaims are supported, such as storage capacity tracking, snapshots and restore,...
Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Fri Oct 14 07:03:14 GMT 2022 - 367.3K bytes - Click Count (0) -
docs/ja/docs/advanced/openapi-callbacks.md
## コールバックのドキュメント化 { #documenting-the-callback } 実際のコールバックのコードは、あなた自身の API アプリに大きく依存します。 そしてアプリごとに大きく異なるでしょう。 それは次のように 1、2 行のコードかもしれません: ```Python callback_url = "https://example.com/api/v1/invoices/events/" httpx.post(callback_url, json={"description": "Invoice paid", "paid": True}) ``` しかし、おそらくコールバックで最も重要な点は、あなたの API 利用者(外部開発者)が、*あなたの API* がコールバックのリクエストボディなどで送るデータに従って、*外部 API* を正しく実装することを確実にすることです。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 9.3K bytes - Click Count (0) -
docs/pt/docs/help-fastapi.md
Em muitos casos ela só copia um fragmento do código, mas isso não é suficiente para **reproduzir o problema**. * Você pode pedir que forneçam um [exemplo mínimo, reproduzível](https://stackoverflow.com/help/minimal-reproducible-example), que você possa **copiar e colar** e executar localmente para ver o mesmo erro ou comportamento que elas estão vendo, ou para entender melhor o caso de uso.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 13.7K bytes - Click Count (0)