1
私は自分のAPIのためにスージーガーを作成していますが、同じエンドポイントに同じメソッドがあるという問題があります。 2つの同じエンドポイント(/トークン)が同じhttpMethod POST
であり、どちらもボディに異なるパラメータを持っています。最初のエンドポイントが表示されていないUIスワッガー。同じエンドポイント上の同じHTTPメソッドが表示されません
これは私の闊歩コードです:だけのパスごとに一度
"/token": {
"post": {
"tags": [
"Authorisation"
],
"summary": "Get Token by Username and Password",
"operationId": "6bfe7ad3-64e8-4550-8fc9-c93ff30f4f0e",
"consumes": [
"application/x-www-form-urlencoded"
],
"parameters": [
],
"responses": {
"200": {
"schema": {
"$ref": "#/definitions/getTokenResponse"
}
}
},
"security": [
{
"basic_auth": []
}
]
},
"post": {
"tags": [
"Authorisation"
],
"summary": "Refresh Acces Token",
"operationId": "6bfe7ad3-64e8-4550-8fc9-c93ff30f4f0e",
"consumes": [
"application/x-www-form-urlencoded"
],
"parameters": [
],
"responses": {
"200": {
"schema": {
"$ref": "#/definitions/getTokenResponse"
}
}
},
"security": [
{
"basic_auth": []
}
]
}
}