如何在Swagger

时间:2016-04-29 17:39:18

标签: swagger swagger-ui swagger-2.0 swashbuckle swagger-editor

我的任务是将Swagger安装到Web API项目中。

已安装:来自nuget的最新版Swashbuckle。 (Swashbuckle.Core.Net45和Swashbuckle.Net45)

自定义:App_Start \ SwaggerConfig.cs。我能够自定义(更改样式,添加徽标,修改说明)..

现在我们需要从https://[your-url]/swagger更改为https://[your-url]/help

请告知

2 个答案:

答案 0 :(得分:3)

如何关注documentation?在您的情况下,您可以将SwaggerConfig更改为

httpConfiguration
    .EnableSwaggerUi("help/{*assetPath}");

然后可以在https://[your-url]/help/index

找到该文档

答案 1 :(得分:3)

更改routePrefix参数的SwaggerUIOptions,默认为“swagger”