-
-
Notifications
You must be signed in to change notification settings - Fork 726
HelpAddonsOpenapiOpenapi
This add-on allows you to spider and import OpenAPI (Swagger) definitions, versions 1.2, 2.0, and 3.0.
The add-on will automatically detect any OpenAPI definitions and spider them as long as they are in scope.
2 menu items are added to the Import menu:
- Import an OpenAPI definition from the local file system
- Import an OpenAPI definition from a URL
Both dialogues allow to override the server URL present in the OpenAPI definition (or specify one if not present) through the Target URL field.
The Target URL has the following format:
scheme://authority/path
with all URI components optional. Note: while all URI components are optional the scheme and authority become mandatory when not importing from URL and the definition does not specify them (for example, it has no servers or schemes).
Following some examples, overriding:
- The authority and path:
localhost/api/
- Just the scheme:
https://
- Just the authority:
qa.example.com:9090
- Just the path:
/dev/v3/
The following operations are added to the API:
- ACTION importFile (file, target)
- ACTION importUrl (url, hostOverride)
Both target
and hostOverride
support the Target URL
format explained earlier. The definitions will be imported synchronously and any warnings will be returned.
The following Command Line options are added:
- -openapifile : Imports an OpenAPI definition from the specified file name
- -openapiurl : Imports an OpenAPI definition from the specified URL
- -openapitargeturl : The Target URL, to override the server URL present in the OpenAPI definition
The definitions will be imported synchronously and any warnings will be displayed on the command line.
Default values are used when importing OpenAPI definitions. These can be overridden using the Form Handler add-on which allows you to specify your own values. In most cases these will be simple values (like strings and integers) but in some cases you may need to specify structured values, e.g.
{ "id": 0, "name": "Freda" }