- Sort Score
- Num 10 results
- Language All
Results 71 - 80 of 767 for Img (0.18 seconds)
-
docs/en/docs/tutorial/security/first-steps.md
You will see something like this: <img src="/img/tutorial/security/image01.png"> /// check | Authorize button! You already have a shiny new "Authorize" button. And your *path operation* has a little lock in the top-right corner that you can click. /// And if you click it, you have a little authorization form to type a `username` and `password` (and other optional fields): <img src="/img/tutorial/security/image02.png">
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Mar 07 09:29:03 GMT 2026 - 8.3K bytes - Click Count (0) -
docs/ko/docs/tutorial/path-params.md
이는 API와 상호 작용하는 코드를 개발하고 디버깅하는 데 매우 유용합니다. /// ## 문서화 { #documentation } 그리고 브라우저에서 [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs)를 열면, 다음과 같이 자동 대화식 API 문서를 볼 수 있습니다: <img src="/img/tutorial/path-params/image01.png"> /// check | 확인 다시 한 번, 동일한 파이썬 타입 선언만으로 **FastAPI**는 자동 대화형 문서(Swagger UI 통합)를 제공합니다. 경로 매개변수가 정수형으로 선언된 것을 확인할 수 있습니다. ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 9.9K bytes - Click Count (0) -
docs/en/docs/tutorial/metadata.md
/// tip You can write Markdown in the `description` field and it will be rendered in the output. /// With this configuration, the automatic API docs would look like: <img src="/img/tutorial/metadata/image01.png"> ## License identifier { #license-identifier } Since OpenAPI 3.1.0 and FastAPI 0.99.0, you can also set the `license_info` with an `identifier` instead of a `url`. For example:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 5.8K bytes - Click Count (0) -
docs/ja/docs/advanced/sub-applications.md
メインアプリ用の自動 API ドキュメントが表示され、そのアプリ自身の path operation のみが含まれます: <img src="/img/tutorial/sub-applications/image01.png"> 次に、サブアプリケーションのドキュメント [http://127.0.0.1:8000/subapi/docs](http://127.0.0.1:8000/subapi/docs) を開きます。 サブアプリケーション用の自動 API ドキュメントが表示され、そのアプリ自身の path operation のみが、正しいサブパス接頭辞 `/subapi` の下で表示されます: <img src="/img/tutorial/sub-applications/image02.png"> どちらの UI でも操作すれば正しく動作します。ブラウザがそれぞれのアプリ/サブアプリと通信できるためです。
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 3.5K bytes - Click Count (0) -
docs/ja/docs/tutorial/debugging.md
すると、**FastAPI** コードでサーバーが起動され、ブレークポイントで停止したりするでしょう。 以下の様な画面になります: <img src="/img/tutorial/debugging/image01.png"> --- Pycharmを使用する場合、次のことが可能です: * 「実行」メニューをオープン。 * オプション「デバッグ...」を選択。 * 次にコンテキストメニューが表示される。 * デバッグするファイル (ここでは `main.py`) を選択。 すると、**FastAPI** コードでサーバーが起動され、ブレークポイントで停止したりするでしょう。 以下の様な画面になります:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 3.1K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/security/oauth2-jwt.md
啟動伺服器並前往文件頁:[http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs)。 你會看到這樣的介面: <img src="/img/tutorial/security/image07.png"> 用和先前相同的方式授權應用。 使用下列認證資訊: Username: `johndoe` Password: `secret` /// check | 檢查 注意在程式碼中完全沒有明文密碼「`secret`」,我們只有雜湊後的版本。 /// <img src="/img/tutorial/security/image08.png"> 呼叫端點 `/users/me/`,你會得到類似這樣的回應: ```JSON {
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/security/oauth2-jwt.md
运行服务器并打开文档:[http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs)。 你会看到这样的用户界面: <img src="/img/tutorial/security/image07.png"> 像之前一样进行授权。 使用以下凭证: 用户名: `johndoe` 密码: `secret` /// check | 检查 注意,代码中的任何地方都没有明文密码 “`secret`”,我们只有它的哈希版本。 /// <img src="/img/tutorial/security/image08.png"> 调用 `/users/me/` 端点,你将得到如下响应: ```JSON {
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/zh-hant/docs/tutorial/response-status-code.md
`status_code` 也可以接收一個 `IntEnum`,例如 Python 的 [`http.HTTPStatus`](https://docs.python.org/3/library/http.html#http.HTTPStatus)。 /// 它會: * 在回應中傳回該狀態碼。 * 在 OpenAPI 結構中如此記錄(因此也會反映在使用者介面中): <img src="/img/tutorial/response-status-code/image01.png"> /// note | 注意 有些回應碼(見下一節)表示回應不包含本文(body)。 FastAPI 知道這點,並會產生聲明「無回應本文」的 OpenAPI 文件。 /// ## 關於 HTTP 狀態碼 { #about-http-status-codes } /// note | 注意
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 3.7K bytes - Click Count (0) -
docs/ko/docs/tutorial/security/first-steps.md
다음과 비슷한 화면이 보일 것입니다: <img src="/img/tutorial/security/image01.png"> /// check | Authorize 버튼! 반짝이는 새 "Authorize" 버튼이 이미 있습니다. 그리고 *경로 처리*에는 오른쪽 상단에 클릭할 수 있는 작은 자물쇠가 있습니다. /// 그리고 이를 클릭하면 `username`과 `password`(그리고 다른 선택적 필드들)를 입력할 수 있는 작은 인증 폼이 나타납니다: <img src="/img/tutorial/security/image02.png"> /// note | 참고
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 9.6K bytes - Click Count (0) -
docs/ko/docs/tutorial/metadata.md
{* ../../docs_src/metadata/tutorial001_py310.py hl[3:16, 19:32] *} /// tip | 팁 `description` 필드에 마크다운을 사용할 수 있으며, 출력에서 렌더링됩니다. /// 이 구성을 사용하면 문서 자동화(로 생성된) API 문서는 다음과 같이 보입니다: <img src="/img/tutorial/metadata/image01.png"> ## 라이선스 식별자 { #license-identifier } OpenAPI 3.1.0 및 FastAPI 0.99.0부터 `license_info`에 `url` 대신 `identifier`를 설정할 수도 있습니다. 예:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 6.6K bytes - Click Count (0)