- Sort Score
- Num 10 results
- Language All
Results 1171 - 1180 of 1,498 for header3 (0.06 seconds)
-
src/main/java/org/codelibs/fess/opensearch/config/exentity/WebConfig.java
} paramMap.put(HcHttpClient.AUTHENTICATIONS_PROPERTY, authConfigList.toArray(new WebAuthenticationConfig[authConfigList.size()])); // request header final List<RequestHeader> requestHeaderList = requestHeaderService.getRequestHeaderList(getId()); final List<org.codelibs.fess.crawler.client.http.RequestHeader> rhList = new ArrayList<>();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jan 10 01:38:30 GMT 2026 - 10.3K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/security/index.md
**FastAPI** 建立在 **OpenAPI** 之上。 這使得它能提供多種自動化的互動式文件介面、程式碼產生等功能。 OpenAPI 提供定義多種安全性「方案」。 透過使用它們,你可以善用這些基於標準的工具,包括這些互動式文件系統。 OpenAPI 定義了下列安全性方案: * `apiKey`:應用程式特定的金鑰,來源可以是: * 查詢參數。 * 標頭(header)。 * Cookie。 * `http`:標準的 HTTP 驗證系統,包括: * `bearer`:使用 `Authorization` 標頭,值為 `Bearer ` 加上一個 token。這是從 OAuth2 延伸而來。 * HTTP Basic 驗證。 * HTTP Digest 等。 * `oauth2`:所有 OAuth2 的安全性處理方式(稱為「flows」)。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) -
internal/config/dns/operator_dns.go
Subject: config.EnvDNSWebhook, } token := jwt.NewWithClaims(jwt.SigningMethodHS512, claims) ss, err := token.SignedString([]byte(c.password)) if err != nil { return err } r.Header.Set("Authorization", "Bearer "+ss) return nil } func (c *OperatorDNS) endpoint(bucket string, del bool) (string, error) { u, err := url.Parse(c.Endpoint) if err != nil { return "", err } q := u.Query()
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Mon Nov 11 14:51:43 GMT 2024 - 6.6K bytes - Click Count (0) -
docs/ja/docs/tutorial/cookie-param-models.md
こうすることで、**複数の場所**で**そのPydanticモデルを再利用**でき、バリデーションやメタデータを、すべてのパラメータに対して一度に宣言できます。😎 /// note | 備考 この機能は、FastAPIのバージョン `0.115.0` からサポートされています。🤓 /// /// tip | 豆知識 これと同じテクニックは `Query` 、 `Cookie` 、 `Header` にも適用できます。 😎 /// ## Pydanticモデルを使用したクッキー { #cookies-with-a-pydantic-model } 必要な複数の**クッキー**パラメータを**Pydanticモデル**で宣言し、さらに、パラメータを `Cookie` として宣言しましょう:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 15:24:30 GMT 2026 - 4.1K bytes - Click Count (0) -
docs/ko/docs/tutorial/cookie-param-models.md
이를 통해 **여러 위치**에서 **모델을 재사용** 할 수 있고 모든 매개변수에 대한 유효성 검사 및 메타데이터를 한 번에 선언할 수도 있습니다. 😎 /// note | 참고 이 기능은 FastAPI 버전 `0.115.0` 이후부터 지원됩니다. 🤓 /// /// tip | 팁 동일한 기술이 `Query`, `Cookie`, 그리고 `Header`에 적용됩니다. 😎 /// ## Pydantic 모델을 사용한 쿠키 { #cookies-with-a-pydantic-model } **Pydantic 모델**에 필요한 **쿠키** 매개변수를 선언한 다음, 해당 매개변수를 `Cookie`로 선언합니다:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:57:01 GMT 2026 - 3.6K bytes - Click Count (0) -
docs/tr/docs/tutorial/server-sent-events.md
/// ## `Last-Event-ID` ile Devam Etme { #resuming-with-last-event-id } Bir tarayıcı bağlantı koptuktan sonra yeniden bağlandığında, son aldığı `id`'yi `Last-Event-ID` header'ında gönderir. Bunu bir header parametresi olarak okuyup, istemcinin kaldığı yerden akışı sürdürmek için kullanabilirsiniz: {* ../../docs_src/server_sent_events/tutorial004_py310.py hl[25,27,31] *} ## POST ile SSE { #sse-with-post }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:51:35 GMT 2026 - 5.1K bytes - Click Count (0) -
docs/zh-hant/docs/advanced/middleware.md
任何指向 `http` 或 `ws` 的請求都會被重新導向至對應的安全協定。 {* ../../docs_src/advanced_middleware/tutorial001_py310.py hl[2,6] *} ## `TrustedHostMiddleware` { #trustedhostmiddleware } 強制所有傳入請求正確設定 `Host` 標頭,以防範 HTTP Host Header 攻擊。 {* ../../docs_src/advanced_middleware/tutorial002_py310.py hl[2,6:8] *} 支援以下參數: - `allowed_hosts` - 允許作為主機名稱的網域名稱清單。支援萬用字元網域(例如 `*.example.com`)以比對子網域。若要允許任意主機名稱,可使用 `allowed_hosts=["*"]`,或乾脆不要加上此中介軟體。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 3.9K bytes - Click Count (0) -
docs/tr/docs/advanced/websockets.md
## `Depends` ve Diğerlerini Kullanma { #using-depends-and-others } WebSocket endpoint'lerinde `fastapi` içinden import edip şunları kullanabilirsiniz: * `Depends` * `Security` * `Cookie` * `Header` * `Path` * `Query` Diğer FastAPI endpoint'leri/*path operations* ile aynı şekilde çalışırlar: {* ../../docs_src/websockets_/tutorial002_an_py310.py hl[68:69,82] *} /// infoCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 5.9K bytes - Click Count (0) -
src/main/java/org/codelibs/curl/Curl.java
* <li>PUT - Updates a current resource with new data.</li> * <li>DELETE - Deletes the specified resource.</li> * <li>HEAD - Same as GET but returns only HTTP headers and no document body.</li> * <li>OPTIONS - Returns the HTTP methods that the server supports.</li> * <li>TRACE - Echoes back the received request, used for debugging.</li>
Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Thu Nov 20 13:34:13 GMT 2025 - 5.9K bytes - Click Count (0) -
docs/zh-hant/docs/advanced/custom-response.md
/// ### `Response` { #response } 主要的 `Response` 類別,其他回應皆繼承自它。 你也可以直接回傳它。 它接受以下參數: - `content` - `str` 或 `bytes`。 - `status_code` - `int` 類型的 HTTP 狀態碼。 - `headers` - 由字串組成的 `dict`。 - `media_type` - 描述 media type 的 `str`。例如 `"text/html"`。 FastAPI(實際上是 Starlette)會自動包含 Content-Length 標頭。也會根據 `media_type`(並為文字型別附加 charset)包含 Content-Type 標頭。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 10.3K bytes - Click Count (0)