mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
⚡ Set reasonable defaults for HTTP Request node "accept" header
This commit is contained in:
parent
a88e4d5b19
commit
7b8f88f39e
|
@ -540,6 +540,7 @@ export class HttpRequest implements INodeType {
|
||||||
headers: {},
|
headers: {},
|
||||||
method: requestMethod,
|
method: requestMethod,
|
||||||
uri: url,
|
uri: url,
|
||||||
|
gzip: true,
|
||||||
rejectUnauthorized: !this.getNodeParameter('allowUnauthorizedCerts', itemIndex, false) as boolean,
|
rejectUnauthorized: !this.getNodeParameter('allowUnauthorizedCerts', itemIndex, false) as boolean,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -640,6 +641,14 @@ export class HttpRequest implements INodeType {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (responseFormat === 'json') {
|
||||||
|
requestOptions.headers!['accept'] = 'application/json,text/*;q=0.99';
|
||||||
|
} else if (responseFormat === 'string') {
|
||||||
|
requestOptions.headers!['accept'] = 'application/json,text/html,application/xhtml+xml,application/xml,text/*;q=0.9, */*;q=0.1';
|
||||||
|
} else {
|
||||||
|
requestOptions.headers!['accept'] = 'application/json,text/html,application/xhtml+xml,application/xml,text/*;q=0.9, image/*;q=0.8, */*;q=0.7';
|
||||||
|
}
|
||||||
|
|
||||||
if (responseFormat === 'file') {
|
if (responseFormat === 'file') {
|
||||||
requestOptions.encoding = null;
|
requestOptions.encoding = null;
|
||||||
} else if(options.bodyContentType === 'raw') {
|
} else if(options.bodyContentType === 'raw') {
|
||||||
|
|
Loading…
Reference in a new issue