- Sort Score
- Num 10 results
- Language All
Results 11 - 18 of 18 for client_credentials (0.45 seconds)
-
docs/ko/docs/tutorial/security/index.md
* HTTP Digest 등 * `oauth2`: 보안을 처리하는 모든 OAuth2 방식(이를 "flow"라고 부릅니다). * 이 flow들 중 여러 개는 OAuth 2.0 인증 제공자(예: Google, Facebook, X (Twitter), GitHub 등)를 구축하는 데 적합합니다: * `implicit` * `clientCredentials` * `authorizationCode` * 하지만 같은 애플리케이션에서 직접 인증을 처리하는 데 완벽하게 사용할 수 있는 특정 "flow"도 하나 있습니다: * `password`: 다음 장들에서 이에 대한 예시를 다룹니다. * `openIdConnect`: OAuth2 인증 데이터를 자동으로 탐색(discover)하는 방법을 정의합니다.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Jan 16 11:54:01 GMT 2026 - 5.1K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/security/index.md
* HTTP Basic 驗證。 * HTTP Digest 等。 * `oauth2`:所有 OAuth2 的安全性處理方式(稱為「flows」)。 * 其中數個 flow 適合用來建立 OAuth 2.0 身分驗證提供者(如 Google、Facebook、X(Twitter)、GitHub 等): * `implicit` * `clientCredentials` * `authorizationCode` * 但有一個特定的 flow 可直接在同一個應用中處理身分驗證: * `password`:後續幾個章節會示範這個。 * `openIdConnect`:提供一種方式來定義如何自動發現 OAuth2 的身分驗證資訊。 * 這種自動探索機制即由 OpenID Connect 規範定義。 /// tip | 提示Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:15:26 GMT 2026 - 4.1K bytes - Click Count (0) -
docs/de/docs/tutorial/security/index.md
* Mehrere dieser Flows eignen sich zum Aufbau eines OAuth 2.0-Authentifizierungsanbieters (wie Google, Facebook, X (Twitter), GitHub usw.): * `implicit` * `clientCredentials` * `authorizationCode` * Es gibt jedoch einen bestimmten „Flow“, der perfekt für die direkte Abwicklung der Authentifizierung in derselben Anwendung verwendet werden kann:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 07:57:30 GMT 2026 - 5.2K bytes - Click Count (0) -
docs/en/docs/tutorial/security/index.md
* Several of these flows are appropriate for building an OAuth 2.0 authentication provider (like Google, Facebook, X (Twitter), GitHub, etc): * `implicit` * `clientCredentials` * `authorizationCode` * But there is one specific "flow" that can be perfectly used for handling authentication in the same application directly: * `password`: some next chapters will cover examples of this.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Aug 31 10:49:48 GMT 2025 - 4.4K bytes - Click Count (0) -
docs/fr/docs/tutorial/security/index.md
* Plusieurs de ces flows conviennent pour construire un fournisseur d'authentification OAuth 2.0 (comme Google, Facebook, X (Twitter), GitHub, etc.) : * `implicit` * `clientCredentials` * `authorizationCode` * Mais il existe un « flow » spécifique qui peut parfaitement être utilisé pour gérer l'authentification directement dans la même application :Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:12:41 GMT 2026 - 5.2K bytes - Click Count (0) -
docs/zh/docs/tutorial/security/index.md
* HTTP Basic 认证方式。 * HTTP Digest,等等。 * `oauth2`:所有的 OAuth2 处理安全性的方式(称为「流程」)。 *以下几种流程适合构建 OAuth 2.0 身份认证的提供者(例如 Google,Facebook,X (Twitter),GitHub 等): * `implicit` * `clientCredentials` * `authorizationCode` * 但是有一个特定的「流程」可以完美地用于直接在同一应用程序中处理身份认证: * `password`:接下来的几章将介绍它的示例。 * `openIdConnect`:提供了一种定义如何自动发现 OAuth2 身份认证数据的方法。 * 此自动发现机制是 OpenID Connect 规范中定义的内容。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 13:37:57 GMT 2026 - 4.3K bytes - Click Count (0) -
docs/ja/docs/tutorial/security/index.md
* HTTP Basic認証 * HTTP ダイジェスト認証など * `oauth2`: OAuth2のセキュリティ処理方法(「フロー」と呼ばれます)のすべて。 * これらのフローのいくつかは、OAuth 2.0認証プロバイダ(Google、Facebook、X (Twitter)、GitHubなど)を構築するのに適しています。 * `implicit` * `clientCredentials` * `authorizationCode` * しかし、同じアプリケーション内で認証を直接処理するために完全に機能する特定の「フロー」があります。 * `password`: 次のいくつかの章では、その例を紹介します。 * `openIdConnect`: OAuth2認証データを自動的に発見する方法を定義できます。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 15:24:30 GMT 2026 - 6.1K bytes - Click Count (0) -
fastapi/openapi/models.py
authorizationUrl: str tokenUrl: str class OAuthFlows(BaseModelWithConfig): implicit: OAuthFlowImplicit | None = None password: OAuthFlowPassword | None = None clientCredentials: OAuthFlowClientCredentials | None = None authorizationCode: OAuthFlowAuthorizationCode | None = None class OAuth2(SecurityBase):Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Mar 15 11:44:39 GMT 2026 - 14.2K bytes - Click Count (0)