Overview
As the web continues to grow and evolve, API’s are where all the magic happens that powers this innovation. REST API’s have become increasingly more favoured by developers for their ease of use over other alternatives (XML I’m looking at you).
Unfortunately, REST API’s can sometimes become a bit unwieldy in terms of documenting them, and consuming them. It is for this reason that Swagger was born! Swagger will autogenerate documentation for your REST API in the form of an Open API specification (swagger.json) document (formerly Swagger Specification). This makes it much easier for developers to understand and consume an API.
Third-party developers can then use the swagger.json specification file to either manually create an API client or auto-generate one for the preferred language of choice.
In this post, I’ll show you how to autogenerate a C# REST API client from a swagger.json in a few easy steps.
Continue reading