我正在使用 Swashbuckle 生成 swagger 文档。不幸的是,我找不到如何根据附加图片添加实施说明。
Bellow 是从我的代码中摘录来生成一些标签的。
/// <summary>
/// User login for given application
/// </summary>
/// <description>
/// Test description
/// </description>
/// <remarks>
/// Sample request:
///
/// POST /login
/// {
/// "email": "jon@nighwatch.com",
/// "password": "jonLov3sDaenarys"
/// "productId": "5e7en-k1ngd0m5"
/// }
///
/// </remarks>
/// <param name="model">Login model</param>
/// <returns>JWT Token</returns>
/// <response code="200">Returns the newly created auth response, containing token with user information</response>
/// <response code="400">If the request is invalid or productId doesn't exist</response>
/// <response code="403">If the account is locked out or role is inactive</response>
[HttpPost]
[Produces("application/json")]
[Consumes("application/json")]
[ProducesResponseType(typeof(AuthResponseModel), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(403)]
[Route("login")]
public async Task<IActionResult> Login([FromBody]LoginModel model)
{
if (ModelState.IsValid)
{
知道我做错了什么吗?
慕田峪7331174
守候你守候我
相关分类