次のような Swagger YAML 関数があります。
/acitem/image:
x-swagger-router-controller: image_send
get:
description: Returns 'image' to the caller
operationId: imageSend
parameters:
- name: name
in: query
description: The image to be sent
required: false
type: string
responses:
"200":
description: Success
schema:
# $ref: "#/definitions/ImageResponse"
type: string
default:
description: Error
schema:
$ref: "#/definitions/ErrorResponse"
私はコンテンツタイププロデュースを次のように持っています:
produces:
- application/json
- text/plain
- text/html
- image/png
しかし、その後でも、私はswagger検証エラーを持っています
私の質問は - 画像応答を書き込むための最適化された方法はありますか、それとも画像応答の検証を除外する方法はありますか???
前もって感謝します。