python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Hide a header from being displayed in Swagger Swashbuckle
As I already have a common authorization added how do I remove separate(authorization header) from each and every API as shown in the image link below?
swaggerHub_Link
Swathy
Votes: 0
Answers: 1
Swagger Show Obsolete Message
Take this for example:
[Obsolete("Please use /Auth/Register instead")]
Swaggers UI shows its Obsolte but doesnt show the message, so is it possible to have the message inside the attribute ...

Nova1545
Votes: 0
Answers: 0
How to resolve Swashbuckle/Swagger -UI model naming issue for generics?
I want to clean the names of the models in the swagger ui for my webapi.
The issue is that when I define a response type on my endpoint, and that type is a generic, it gets named in such a way that if...
Frank R. Haugen
Votes: 0
Answers: 1
Cant test IFormFile uploads using Swashbuckle.AspNetCore in net 5.0
I have the following request structure :
public class UploadFilesRequest
{
public int[] UploadOptions { get; set; }
public IEnumerable<UploadInfo> Files { get; set; }
}
public class ...
Radu Olteanu
Votes: 0
Answers: 1