我正在使用python中的swagger构建一个应用程序。我在swagger yaml
文件中指定了我的代码生成的所有结果。 Connexion,我正在使用的库,也检查客户端提供的数据的有效性,例如可能返回
{
"detail": "Invalid Content-type (application/json), expected JSON data",
"status": 415,
"title": "Unsupported Media Type",
"type": "about:blank"
}
要完成文档,ui应该包含我指定的所有响应消息和connexion的隐式响应消息。
有没有办法将所有这些隐式响应添加到swagger-ui?