Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 81 - 90 of 139 for Requestbody (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. tests/test_security_oauth2_optional_description.py

                                },
                            },
                            "summary": "Login",
                            "operationId": "login_login_post",
                            "requestBody": {
                                "content": {
                                    "application/x-www-form-urlencoded": {
                                        "schema": {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 9.9K bytes
    - Click Count (0)
  2. docs/ko/docs/advanced/path-operation-advanced-configuration.md

    OpenAPI 명세에서는 이를 [Operation Object](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#operation-object)라고 부릅니다.
    
    ///
    
    여기에는 *경로 처리*에 대한 모든 정보가 있으며, 자동 문서를 생성하는 데 사용됩니다.
    
    `tags`, `parameters`, `requestBody`, `responses` 등이 포함됩니다.
    
    이 *경로 처리* 전용 OpenAPI 스키마는 보통 **FastAPI**가 자동으로 생성하지만, 확장할 수도 있습니다.
    
    /// tip | 팁
    
    이는 저수준 확장 지점입니다.
    
    추가 응답만 선언하면 된다면, 더 편리한 방법은 [OpenAPI의 추가 응답](additional-responses.md)을 사용하는 것입니다.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 7.6K bytes
    - Click Count (0)
  3. tests/test_openapi_examples.py

                    "/examples/": {
                        "post": {
                            "summary": "Examples",
                            "operationId": "examples_examples__post",
                            "requestBody": {
                                "content": {
                                    "application/json": {
                                        "schema": {
                                            "$ref": "#/components/schemas/Item",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 16.4K bytes
    - Click Count (0)
  4. okhttp/src/jvmTest/kotlin/okhttp3/InterceptorOverridesTest.kt

            enableTls()
            overrideBadImplementation(override = override.override, testItFails = testItFails)
          }
    
          OverrideParam.WriteTimeout -> {
            val body =
              object : RequestBody() {
                override fun contentType(): MediaType? = null
    
                override fun writeTo(sink: BufferedSink) {
                  if (sink
                      .timeout()
                      .timeoutNanos()
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 11 02:37:00 GMT 2026
    - 28.8K bytes
    - Click Count (0)
  5. docs/en/docs/advanced/path-operation-advanced-configuration.md

    ///
    
    It has all the information about the *path operation* and is used to generate the automatic documentation.
    
    It includes the `tags`, `parameters`, `requestBody`, `responses`, etc.
    
    This *path operation*-specific OpenAPI schema is normally generated automatically by **FastAPI**, but you can also extend it.
    
    /// tip
    
    This is a low level extension point.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 7.1K bytes
    - Click Count (0)
  6. README.md

    ```java
    public static final MediaType JSON = MediaType.get("application/json");
    
    OkHttpClient client = new OkHttpClient();
    
    String post(String url, String json) throws IOException {
      RequestBody body = RequestBody.create(json, JSON);
      Request request = new Request.Builder()
          .url(url)
          .post(body)
          .build();
      try (Response response = client.newCall(request).execute()) {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Oct 30 21:39:59 GMT 2025
    - 9.5K bytes
    - Click Count (0)
  7. mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt

        }
    
        return RecordedRequest(
          requestLine = request,
          headers = headers.build(),
          chunkSizes = chunkSizes,
          bodySize = requestBody.receivedByteCount,
          body =
            when {
              hasBody -> requestBody.buffer.readByteString()
              else -> null
            },
          connectionIndex = connectionIndex,
          exchangeIndex = exchangeIndex,
          socket = socket,
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 40.3K bytes
    - Click Count (0)
  8. docs/zh-hant/docs/advanced/path-operation-advanced-configuration.md

    /// note | 技術細節
    
    在 OpenAPI 規格中,這稱為 [Operation 物件](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#operation-object)。
    
    ///
    
    它包含關於*路徑操作*的所有資訊,並用於產生自動文件。
    
    其中包含 `tags`、`parameters`、`requestBody`、`responses` 等。
    
    這個針對單一路徑操作的 OpenAPI 結構通常由 FastAPI 自動產生,但你也可以擴充它。
    
    /// tip
    
    這是一個較低階的擴充介面。
    
    如果你只需要宣告額外回應,更方便的方式是使用 [OpenAPI 中的額外回應](additional-responses.md)。
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  9. docs/ja/docs/advanced/path-operation-advanced-configuration.md

    OpenAPI仕様では [Operation Object](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#operation-object) と呼ばれています。
    
    ///
    
    これには *path operation* に関するすべての情報が含まれ、自動ドキュメントを生成するために使われます。
    
    `tags`、`parameters`、`requestBody`、`responses` などが含まれます。
    
    この *path operation* 固有のOpenAPIスキーマは通常 **FastAPI** により自動生成されますが、拡張することもできます。
    
    /// tip | 豆知識
    
    これは低レベルな拡張ポイントです。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 8.2K bytes
    - Click Count (0)
  10. fastapi/openapi/utils.py

                        field_mapping=field_mapping,
                        separate_input_output_schemas=separate_input_output_schemas,
                    )
                    if request_body_oai:
                        operation["requestBody"] = request_body_oai
                if route.callbacks:
                    callbacks = {}
                    for callback in route.callbacks:
                        if isinstance(callback, routing.APIRoute):
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 25.6K bytes
    - Click Count (0)
Back to Top