Top "Swagger" questions

Swagger is a framework implementation for describing, producing, consuming, and visualizing RESTful web services, based on the OpenAPI specification

Generating Swagger UI documentation for REST API

I have my REST API developed using JAX-RS/Jersey in Java. I want to convert to/generate Swagger based UI …

java swagger swagger-ui
Swagger/OpenAPI - use $ref to pass a reusable defined parameter

Let's say I've got a parameter like limit. This one gets used all over the place and it's a pain …

swagger swagger-2.0 openapi
Use JWT (Authorization: Bearer) in Swagger in ASP.NET Core

I'm creating a REST api in ASP.NET Core 1.0. I was using Swagger to test but now I added JWT …

c# asp.net-core swagger jwt
Swagger UI passing authentication token to API call in header

I am new to Swagger. I am using Swagger UI to generate swagger documentation. I have two API calls. First …

rest jersey swagger swagger-ui
Can Swagger be used for SOAP?

I was exploring Swagger and I must acknowledge I'm loving it. I understand Swagger is primarily for RESTful web services, …

web-services rest soap swagger swagger-ui
Unable to get Swagger UI working with Spring boot

I am trying to get Swagger UI working with Spring Boot 1.2.1. I followed the instructions at https://github.com/martypitt/…

spring-boot swagger swagger-ui
Swagger send body and formData parameter

I'm using Swagger 2.0 and I have a problem to send multiple post parameters. I have a swagger error Operation cannot …

rest swagger multipartform-data
Use @ApiParam or @ApiModelProperty in swagger?

Both the following annotations work for adding metadata to swagger-ui docs. Which one should be prefered, and why? public class …

java swagger swagger-ui swagger-2.0
How to change base url of Swagger in ASP.NET core

By default when you enable swagger in ASP.NET Core project it's available on url: http://localhost:<random_port&…

c# asp.net asp.net-core swagger
Using Swagger with Flask

Is there a way to generate a RESTful API in Flask using Swagger?

flask swagger swagger-ui