0
我正在定義一個資源,您使用非JSON主體進行POST。它只是一個像表單參數那樣的字符串。類似於OAuth發生的情況: grant_type = & code = & redirect_uri =Swagger POST與非json主體
如何在Swagger上記錄該文件?我必須使用formParam格式而不是正文嗎?我將它放入正文中的所有內容都轉換爲JSON示例。
TokenRequest:
properties:
grant_type:
type: string
description: OAuth Grant Type
enum:
- authorization_code
- refresh
code:
type: string
description: Authorization Code obtained from /authorize required if grant_type = au
redirect_uri:
type: string
description: Defined Redirect URI Example - https://example.com/callback
refresh_token:
type: string
description: Required if grant_type = refresh
是的,我也試過這種方式,它的工作原理。只是表現不同(我不太喜歡它)。但我會處理它。謝謝! – SuperGeek133