Questions tagged [swagger-inspector]

4 questions
2
votes
0 answers

How to provide client certificate to swagger inspector

https://inspector.swagger.io/builder I have an api hosted locally and needs a client certificate for authentication. I am able to access the API from Fiddler and Postman. For both these I could add the client certificate needed to authenticate with…
Praveen
  • 166
  • 2
  • 4
  • 13
1
vote
0 answers

Is there a way to convert swagger inspector yaml result into php attributes?

Swagger inspector is a great tool that create openapi documentation just by giving an URL. But it creates a yaml file and I would like to get it in PHP attributes because I mostly use PHP attributes in my application. I'd like to be able to generate…
L01C
  • 578
  • 1
  • 8
  • 25
1
vote
1 answer

How do I create a request in Swagger Inspector that accepts multiple data types?

I am currently trying to submit a request using the Swagger Inspector using multipart/form-data header to allow the submission of a file in conjunction with json data. The JSON body of my request looks like: And the headers with file upload look…
space97
  • 153
  • 1
  • 4
  • 19
0
votes
0 answers

Spring boot -Open api 3 doc generation dynamically without maven and restarting application (swagger Interceptor implementation)

I am using spring boot in which I wanted to dynamically generate open api 3 specification by uploading json/yml and view in swagger ui upload json/yml dynamically generate swagger /open api specification 3.view in swagger ui Is there any approach…