You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Okay... after some digging in the code and googeling I found this: #2
Basically when an http node has a parameter like /pet/:petId/ it automatically (after deploying) converts into a parameter. (tried this out and it is working so I am a happy camper :-D)
Maybe worth adding this to the README.md? could not find it there...
Hi First of all I would like to compliment you with the swagger plugin, great tool simple to use and worked in one go.
On thing I did not see... (maybe something that could be added?)
When I have a url like this: /pet/{petId}/name which allows me to modify the name of a pet based on its id then I would normally specify this like so:
"parameters":[
{
"name":"petId",
"in":"path",
"description":"ID of pet to return",
"required":true,
"type":"integer",
"format":"int64"
}
When I look in the node-red editor the options for parameter are:
*query
*header
*formdata
*body
Any way you could add to that the "path" ?
The text was updated successfully, but these errors were encountered: