Skip to content

Instantly share code, notes, and snippets.

@craftoid
Last active June 22, 2020 01:09
Show Gist options
  • Save craftoid/96a4fc0fad7903af929ae79079eeed33 to your computer and use it in GitHub Desktop.
Save craftoid/96a4fc0fad7903af929ae79079eeed33 to your computer and use it in GitHub Desktop.
Payload for multipart/form posts using the Node-RED request node
msg.headers = {
"Content-Type": "multipart/form-data"
};
msg.payload = {
'image' : {
'value': msg.payload,
'options': {
'filename': 'image.jpg'
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment