tagged [swagger]
How to secure generated API documentation using swagger swashbuckle
How to secure generated API documentation using swagger swashbuckle I have implemented API documentation using swagger swashbukle. Now I want to publish generated documentation as a help file in my we...
- Modified
- 29 Aug at 13:15
Swagger gives me HTTP Error 403.14 - Forbidden
Swagger gives me HTTP Error 403.14 - Forbidden I am trying to use Swagger with Web API. I am just using the "Azure API App" template from the ASP.NET 4.6 templates installed with Visual Studio, which ...
- Modified
- 2 May at 02:51
Swashbuckle parameter descriptions
Swashbuckle parameter descriptions I'm using SwaggerResponse attributes to decorate my api controller actions, this all works fine, however when I look at the generated documentation the description f...
- Modified
- 7 Jun at 13:50
ServiceStack SwaggerUI route location
ServiceStack SwaggerUI route location The documentation for [ServiceStack's SwaggerUI implementation](https://github.com/ServiceStack/ServiceStack/wiki/Swagger-API) states > Default configuration expe...
- Modified
- 5 Feb at 18:5
How to use resources instead of strings for swagger api annotations in servicestack
How to use resources instead of strings for swagger api annotations in servicestack I'd like to create servicestack api and use swagger for autoupdatable documentation. The problem is that I need this...
- Modified
- 19 Sep at 12:28
Swagger - Get Generated JSON
Swagger - Get Generated JSON I have a .NET application that uses `Servicestack` for writing services and `Swagger` for documenting the APIs. Everything works fine and i can see in Swagger-UI the gener...
- Modified
- 18 Jan at 16:44
Swagger 'swagger.json' loads, but 404 error on swagger UI '{localhost}/swagger' in AspNet project
Swagger 'swagger.json' loads, but 404 error on swagger UI '{localhost}/swagger' in AspNet project Working on setting up swagger for a web application hosted with IIS using AspNetCore. The .json page l...
- Modified
- 15 Jul at 16:37
ServiceStack Swagger not matching custom route
ServiceStack Swagger not matching custom route I am using the ServiceStack Swagger Api. I can generate the documentation if my routes have parameters after the resource ,ex: /items/{itemid} if I have ...
- Modified
- 19 Oct at 23:52
Servicestack object parameter not getting passed to service with Swagger-UI
Servicestack object parameter not getting passed to service with Swagger-UI My service model: ``` [Route("/customer/{CustomerId}/creditcardtoken/{CanLookup}", "POST")] public class CreditCardToken : I...
- Modified
- 18 Nov at 18:43
Is it possible to enable a form for entering bearer tokens in Swagger-UI from ServiceStack's OpenApiFeature?
Is it possible to enable a form for entering bearer tokens in Swagger-UI from ServiceStack's OpenApiFeature? Is it possible to enable a form for entering bearer tokens in Swagger-UI from ServiceStack'...
- Modified
- 23 Jan at 09:33
C# NSwag and swagger-codegen with Enums
C# NSwag and swagger-codegen with Enums I have a .Net Core v2.1 Web API which uses NSwag to generate its Swagger Json. I have a response model as such - Which generates the Swagger JSON of - ``
- Modified
- 4 Oct at 14:18
How to configure Spring Security to allow Swagger URL to be accessed without authentication
How to configure Spring Security to allow Swagger URL to be accessed without authentication My project has Spring Security. Main issue: Not able to access swagger URL at [http://localhost:8080/api/v2/...
- Modified
- 21 Jun at 20:9
Use JWT (Authorization: Bearer) in Swagger in ASP.NET Core
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 authorization for some routes. (with `UseJwtBear...
- Modified
- 4 Jun at 12:5
How do you add a swagger comment to the "Request and Response Model"?
How do you add a swagger comment to the "Request and Response Model"? You can add a comment on the methods like the example below but what about adding comments to the request and response model? ``` ...
- Modified
- 19 Jul at 14:0
How to redirect from root url to /swagger/ui/index?
How to redirect from root url to /swagger/ui/index? I have a WebApi project with Swashbuckle installed onto it. In default setup, I must open in browser `http://localhost:56131/swagger/ui/index` to vi...
- Modified
- 9 Jun at 11:26
Have Swagger to substitute servicestack meta
Have Swagger to substitute servicestack meta I was wondering if it's possible to have swagger to serve pages at place of SS metadata page... I'm asking this since SS metadata is quite usefull when you...
- Modified
- 31 Jan at 16:43
Why Swashbuckle.aspnet.core.swagger not being recognized
Why Swashbuckle.aspnet.core.swagger not being recognized I've installed though `nuget package manager` the `Swashbuckle.AspNetCore.Swagger` and had included the using `Swashbuckle.AspNetCore.Swagger` ...
- Modified
- 30 Nov at 13:38
How can I hide endpoints from Swagger UI in Servicestack?
How can I hide endpoints from Swagger UI in Servicestack? I'm using the Swagger plugin for ServiceStack 3.9.59.0. I have a few endpoints, for example /selfchecknode, in my ServiceStack API that I don'...
- Modified
- 2 Oct at 23:46
Define complex type in ServiceStack Swagger-UI
Define complex type in ServiceStack Swagger-UI I'm trying to achieve something like this [http://petstore.swagger.wordnik.com/#!/store/placeOrder_post_2](http://petstore.swagger.wordnik.com/#!/store/p...
- Modified
- 10 Apr at 14:21
Does ServiceStack Swagger plugin works for .NET WebAPI 2.0
Does ServiceStack Swagger plugin works for .NET WebAPI 2.0 I have a REST WebAPI 2.0 written in C# .NET (framework 4.5.1) and looking for documenting it using [ServiceStack's swagger add-on](http://www...
- Modified
- 28 Jan at 13:22
ServiceStack.Swagger.Api supportedSubmitMethods
ServiceStack.Swagger.Api supportedSubmitMethods I have a service set up that uses ServiceStack.Swagger.Api. My service has several endpoints that support OPTIONS requests. Is there a way to configure ...
- Modified
- 31 Mar at 21:24
Wire up MiniProfiler to ASP.NET Core Web API Swagger
Wire up MiniProfiler to ASP.NET Core Web API Swagger I found only [this manual](http://www.lambdatwist.com/webapi-profiling-with-miniprofiler-swagger/) describing how to make MiniProfiler work with AS...
- Modified
- 7 Mar at 11:11
How to redirect root to swagger in Asp.Net Core 2.x?
How to redirect root to swagger in Asp.Net Core 2.x? I'm building Asp.Net Core 2.x web api integrated with Swagger. To access the swagger, I had to append /swagger to the url, eg. [https://mywebapi.az...
- Modified
- 15 Mar at 02:34
DTO as array in ServiceStack
DTO as array in ServiceStack I'm attempting to migrate a Web API service to ServiceStack with minimum (no) change to the service definition, but am having trouble creating an operation with an array a...
- Modified
- 4 Nov at 08:56
Swagger url for self hosted servicesteack service
Swagger url for self hosted servicesteack service I am trying to use ServiceStack.Api.Swagger and by default swagger url is pre-populated with /swagger-ui/resources While for self-hosted ServiceStack ...
- Modified
- 27 May at 20:30