Can’t read from file issue in Swagger UI

I am guessing “http://MYIP/swagger/docs/v1” is not publicly accessible. By default swagger ui uses an online validator: online.swagger.io. If it cannot access your swagger url then you will see that error message. Possible solutions: Disable validation: config.EnableSwagger().EnableSwaggerUi(c => c.DisableValidator()); Make your site publicly accessible Host the validator locally: You can get the validator from: https://github.com/swagger-api/validator-badge#running-locally You … Read more

List of swagger UI alternatives [closed]

Yes, there are a few of them. ReDoc [Article on swagger.io] [GitHub] [demo] – Reinvented OpenAPI/Swagger-generated API Reference Documentation (I’m the author) OpenAPI GUI [GitHub] [demo] – GUI / visual editor for creating and editing OpenApi / Swagger definitions (has OpenAPI 3 support) Responsive Fork of SwaggerUI [GitHub] [demo] SwaggerUI-Angular [GitHub] [demo] – An angularJS … Read more