From b428e24ea51e00e2260739987dfab74872765a9f Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Wed, 25 Jun 2025 16:28:30 +0100 Subject: [PATCH] Update skip http body parser --- .../@node-red/nodes/core/network/21-httpin.html | 14 +++++++------- .../@node-red/nodes/locales/en-US/messages.json | 4 ++-- .../nodes/locales/en-US/network/21-httpin.html | 1 + 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/packages/node_modules/@node-red/nodes/core/network/21-httpin.html b/packages/node_modules/@node-red/nodes/core/network/21-httpin.html index 59c2bfb6f..a06c416ad 100644 --- a/packages/node_modules/@node-red/nodes/core/network/21-httpin.html +++ b/packages/node_modules/@node-red/nodes/core/network/21-httpin.html @@ -28,14 +28,14 @@
-
-
- - +
+
+ +
-
- - +
+ +
diff --git a/packages/node_modules/@node-red/nodes/locales/en-US/messages.json b/packages/node_modules/@node-red/nodes/locales/en-US/messages.json index 97fdf5571..5c9c99e75 100644 --- a/packages/node_modules/@node-red/nodes/locales/en-US/messages.json +++ b/packages/node_modules/@node-red/nodes/locales/en-US/messages.json @@ -515,8 +515,8 @@ "url": "URL", "doc": "Docs", "return": "Return", - "upload": "Accept file uploads?", - "parsing": "Skip body parsing?", + "upload": "Accept file uploads", + "parsing": "Do not parse request body", "status": "Status code", "headers": "Headers", "other": "other", diff --git a/packages/node_modules/@node-red/nodes/locales/en-US/network/21-httpin.html b/packages/node_modules/@node-red/nodes/locales/en-US/network/21-httpin.html index d3f1984c4..08e8c6aa1 100644 --- a/packages/node_modules/@node-red/nodes/locales/en-US/network/21-httpin.html +++ b/packages/node_modules/@node-red/nodes/locales/en-US/network/21-httpin.html @@ -50,6 +50,7 @@

If the content type of the request can be determined, the body will be parsed to any appropriate type. For example, application/json will be parsed to its JavaScript object representation.

+

The node can be configured to not parse the body, in which case it will be provided as a Buffer object.

Note: this node does not send any response to the request. The flow must include an HTTP Response node to complete the request.