I am using Swagger 2 with Springfox.
When you click on an endpoint, is there any way to have the Try-it-out mode activated by default, without having to click this button:
I am using Swagger 2 with Springfox.
When you click on an endpoint, is there any way to have the Try-it-out mode activated by default, without having to click this button:
try this: use on startup.cs (.net5) or program.cs (.net6)
app.UseSwaggerUI(options =>
{
options.EnableTryItOutByDefault();
});