Answer the question
In order to leave comments, you need to log in
How to generate interactive OpenAPI documentation?
There is a .yaml file describing the API, how to get interactive html from it?
You need something like this:
From the site https://app.swaggerhub.com/ you can only export ugly looking html, but you need the look exactly like in the example.
Answer the question
In order to leave comments, you need to log in
Such a thing can often be set up on different technology stacks using some kind of middleware, for example, in conjunction with ASP.NET Core, Swashbuckle
does a good job :
app.UseSwaggerUI(c =>
{
c.SwaggerEndpoint("v1/swagger.json", "My API V1");
});
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question