We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given the following simple swagger.json:
swagger.json
{ "swagger": "2.0", "info": { "version": "v1", "title": "ActiveDirectory" }, "host": "ad-api.company.com", "schemes": [ "https" ], "paths": { "/api/Group/{name}": { "get": { "tags": [ "Group" ], "operationId": "Group_GetGroup", "consumes": [], "produces": [ "application/json", "text/json", "application/xml", "text/xml" ], "parameters": [ { "name": "name", "in": "path", "required": true, "type": "string" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ActiveDirectoryGroup" } } } } } } }
> node-red-nodegen swagger.json
inject->node->debug
Node Red produces the following error: Host in configuration node is not specified.
Host in configuration node is not specified.
Either of:
msg.payload
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What are the steps to reproduce?
Given the following simple
swagger.json
:> node-red-nodegen swagger.json
inject->node->debug
flowWhat happens?
Node Red produces the following error:
Host in configuration node is not specified.
What do you expect to happen?
Either of:
msg.payload
.Please tell us about your environment:
The text was updated successfully, but these errors were encountered: