mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
Merge branch 'pr_2078' into dev
This commit is contained in:
@@ -78,5 +78,18 @@
|
||||
<p>If <code>msg.payload</code> is an Object, the node will automatically set the content type
|
||||
of the request to <code>application/json</code> and encode the body as such.</p>
|
||||
<p>To encode the request as form data, <code>msg.headers["content-type"]</code> should be set to <code>application/x-www-form-urlencoded</code>.</p>
|
||||
<h4>File Upload</h4>
|
||||
<p>To perform a file upload, <code>msg.headers["content-type"]</code> should be set to <code>multipart/form-data</code>
|
||||
and the <code>msg.payload</code> passed to the node must be an object with the following structure:</p>
|
||||
<pre>{
|
||||
"KEY": {
|
||||
"value": FILE_CONTENTS,
|
||||
"options": {
|
||||
"filename": "FILENAME"
|
||||
}
|
||||
}
|
||||
}</code></pre>
|
||||
<p>The values of <code>KEY</code>, <code>FILE_CONTENTS</code> and <code>FILENAME</code>
|
||||
should be set to the appropriate values.</p>
|
||||
|
||||
</script>
|
||||
|
Reference in New Issue
Block a user