mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
fix(HTTP Request Node): Bug - node requires string instead of json
This commit is contained in:
@@ -1109,6 +1109,7 @@ export class HttpRequestV3 implements INodeType {
|
||||
);
|
||||
} else if (specifyBody === 'json') {
|
||||
// body is specified using JSON
|
||||
if (typeof jsonBodyParameter !== 'object' && jsonBodyParameter !== null) {
|
||||
try {
|
||||
JSON.parse(jsonBodyParameter);
|
||||
} catch (_) {
|
||||
@@ -1122,6 +1123,9 @@ export class HttpRequestV3 implements INodeType {
|
||||
}
|
||||
|
||||
requestOptions.body = jsonParse(jsonBodyParameter);
|
||||
} else {
|
||||
requestOptions.body = jsonBodyParameter;
|
||||
}
|
||||
} else if (specifyBody === 'string') {
|
||||
//form urlencoded
|
||||
requestOptions.body = Object.fromEntries(new URLSearchParams(body));
|
||||
|
||||
Reference in New Issue
Block a user