Swaggman - OpenAPI / Swagger Spec Utility and Postman Converter


Swaggman is a multi-purpose OpenAPI and Postman utility.
It can perform the following:
OpenAPI Spec 3
OpenAPI Spec 2
- Convert OpenAPI v2 to Postman Collection v2
- Merge Multiple OAS2 Specs
Features
- Supports Postman scripts by accepting an optional base Postman 2.0 spec that contains information not readily stored in Swagger Spec to support functions such as OAuth Password Grant.
- Supports override base URL parameter to support a Postman environment variable for the URL hostname using the
PostmanURLBase
config property, e.g. {{MY_SERVER}}/restapi
- Supports override URL hostname parameter to support a Postman environment variable for the URL hostname using the
PostmanURLHostname
config property, e.g. https://{{MY_HOSTNAME}}/restapi
- Supports additional headers, e.g. authorization headers using enviroment variables, e.g.
Authorization: Bearer {{myAccessToken}}
These are all used in the included example discussed below.
Additional discussion is available on Medium.
Notes
- Postman 4.10.7 does not natively support JSON requests so request bodies need to be entered using the raw body editor. A future task is to add Swagger request examples as default Postman request bodies.
- Postman 2.0 spec supports polymorphism and doesn't have a canonical schema. For example, the
request.url
property can be populated by a URL string or a URL object. Swaggman uses the URL object since it is more flexible. The function simple.NewCanonicalCollectionFromBytes(bytes)
can be used to read either a simple or object based spec into a canonical object spec.
- This has only been used on the RingCentral Swagger spec to date but will be used for more in the future. Please feel free to use and contribute. Examples are located in the
examples
folder.
Installation
The following command will install the executable binary swaggman
into the ~/go/bin
directory.
$ go get github.com/grokify/swaggman
Usage
Simple Usage
// Instantiate a converter with default configuration
conv := swaggman.NewConverter(swaggman.Configuration{})
// Convert a Swagger spec
err := conv.Convert("path/to/swagger.json", "path/to/pman.out.json")
Usage with Features
The following can be added which are especially useful to use with environment variables.
- Custom Hostname
- Custom Headers
// Instantiate a converter with overrides (using Postman environment variables)
cfg := swaggman.Configuration{
PostmanURLBase: "{{RINGCENTRAL_SERVER_URL}}",
PostmanHeaders: []postman2.Header{
{
Key: "Authorization",
Value: "Bearer {{my_access_token}}",
},
},
}
conv = swaggman.NewConverter(cfg)
// Convert a Swagger spec with a default Postman spec
err := conv.MergeConvert("path/to/swagger.json", "path/to/pman.base.json", "path/to/pman.out.json")
Example
An example conversion is included, examples/ringcentral/convert.go
which creates a Postman 2.0 spec for the RingCentral REST API using a base Postman 2.0 spec and the RingCentral basic Swagger 2.0 spec.
A video of importing the resulting Postman collection is available on YouTube.
Example files include:
The RingCentral spec uses the following environment variables. The following is the Postman bulk edit format:
RC_SERVER_HOSTNAME:platform.devtest.ringcentral.com
RC_APP_KEY:myAppKey
RC_APP_SECRET:myAppSecret
RC_USERNAME:myMainCompanyPhoneNumber
RC_EXTENSION:myExtension
RC_PASSWORD:myPassword
For multiple apps or users, simply create a different Postman environment for each.
To set your environment variables, use the Settings Gear icon and then click "Manage Environments"
Articles and Links