- Sort Score
- Num 10 results
- Language All
Results 361 - 370 of 850 for tutoriel (0.12 seconds)
-
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/zh/docs/tutorial/security/simple-oauth2.md
### 身份验证 { #authenticate } 点击“Authorize”按钮。 使用以下凭证: 用户名:`johndoe` 密码:`secret` <img src="/img/tutorial/security/image04.png"> 通过身份验证后,显示下图所示的内容: <img src="/img/tutorial/security/image05.png"> ### 获取当前用户数据 { #get-your-own-user-data } 使用 `/users/me` 路径的 `GET` 操作。 可以提取如下当前用户数据: ```JSON { "username": "johndoe",Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 9K bytes - Click Count (0) -
docs/de/docs/advanced/response-change-status-code.md
# Response – Statuscode ändern { #response-change-status-code } Sie haben wahrscheinlich schon vorher gelesen, dass Sie einen Default-[Response-Statuscode](../tutorial/response-status-code.md) festlegen können. In manchen Fällen müssen Sie jedoch einen anderen als den Default-Statuscode zurückgeben. ## Anwendungsfall { #use-case } Stellen Sie sich zum Beispiel vor, Sie möchten standardmäßig den HTTP-Statuscode „OK“ `200` zurückgeben.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 2K bytes - Click Count (0) -
docs/uk/docs/tutorial/request-form-models.md
## Перевірте документацію { #check-the-docs } Ви можете перевірити це в UI документації за `/docs`: <div class="screenshot"> <img src="/img/tutorial/request-form-models/image01.png"> </div> ## Забороніть додаткові поля форми { #forbid-extra-form-fields }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 3.2K bytes - Click Count (0) -
docs/de/docs/_llm-test.md
## Überschriften { #headings } //// tab | Test ### Eine Webapp entwickeln – ein Tutorial { #develop-a-webapp-a-tutorial } Hallo. ### Typhinweise und -annotationen { #type-hints-and-annotations } Hallo wieder. ### Super- und Subklassen { #super-and-subclasses } Hallo wieder. ////Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 12.3K bytes - Click Count (0) -
docs/zh/docs/tutorial/metadata.md
你可以按如下方式设置它们: {* ../../docs_src/metadata/tutorial001_py310.py hl[3:16, 19:32] *} /// tip | 提示 你可以在 `description` 字段中编写 Markdown,它会在输出中渲染。 /// 通过这样设置,自动 API 文档看起来会像: <img src="/img/tutorial/metadata/image01.png"> ## 许可证标识符 { #license-identifier } 自 OpenAPI 3.1.0 和 FastAPI 0.99.0 起,你还可以在 `license_info` 中使用 `identifier` 而不是 `url`。 例如: {* ../../docs_src/metadata/tutorial001_1_py310.py hl[31] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 5.6K bytes - Click Count (0) -
docs/en/docs/reference/security/index.md
OAuth2PasswordRequestForm, OAuth2PasswordRequestFormStrict, OpenIdConnect, SecurityScopes, ) ``` Read more about them in the [FastAPI docs about Security](https://fastapi.tiangolo.com/tutorial/security/). ## API Key Security Schemes ::: fastapi.security.APIKeyCookie ::: fastapi.security.APIKeyHeader ::: fastapi.security.APIKeyQuery ## HTTP Authentication SchemesCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 04 12:41:54 GMT 2026 - 1.7K bytes - Click Count (0) -
docs/uk/docs/advanced/advanced-dependencies.md
А при використанні `Depends(scope="request")` (типове значення) завершальний код після `yield` виконується після відправлення відповіді. Докладніше читайте в документації: [Залежності з `yield` - Ранній вихід і `scope`](../tutorial/dependencies/dependencies-with-yield.md#early-exit-and-scope). ### Залежності з `yield` і `StreamingResponse`, технічні деталі { #dependencies-with-yield-and-streamingresponse-technical-details }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 13.9K bytes - Click Count (0) -
docs/ko/docs/tutorial/dependencies/global-dependencies.md
## *경로 처리* 그룹에 대한 의존성 { #dependencies-for-groups-of-path-operations }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 1.2K bytes - Click Count (0) -
docs/pt/docs/advanced/behind-a-proxy.md
<img src="/img/tutorial/behind-a-proxy/image01.png"> Mas se acessarmos a interface de documentação no URL "oficial" usando o proxy com a porta `9999`, em `/api/v1/docs`, ela funciona corretamente! 🎉 Você pode verificar em [http://127.0.0.1:9999/api/v1/docs](http://127.0.0.1:9999/api/v1/docs): <img src="/img/tutorial/behind-a-proxy/image02.png"> Exatamente como queríamos. ✔️
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 16.6K bytes - Click Count (0)