Swagger-codegen will begin

I am looking to get into Swagger, more precisely, the swagger-codegen tool. I find the information, documentation and specifications provided on both github and http://swagger.io/ quite confusing (plus, some links to sample code were broken / 404 /). Is there any portal where I can see tutorials started, code examples, etc. Designed for beginners using these tools?

+5
source share
1 answer

The gigub Swagger-Codegen page contains a section showing how to generate a sample client .

Assuming you have a Swagger specification, you can also create an API client on the Internet. Here is an example:

curl -X POST -H "content-type:application/json" -d '{"swaggerUrl":"http://petstore.swagger.io/v2/swagger.json"}' http://generator.swagger.io/api/gen/servers/spring-mvc 

For broken links on the gigub swagger-codegen page report a problem here

+4
source

All Articles