Hello i'm not a WEB specialist - but I want to know, if I can send insecureHTTPParser requests with the http-Request Node. It seems that "Disable strict HTTP parsing" does not work.
Using the search function guides me to this thread and posting #16, but as I am a dummy user - I understood nothing.
With the axios library I can set the insecureHTTPParser parameter to true and then it is possible to get data from the URL.
axios.get(url, { insecureHTTPParser: true }).then((response) => response.data);
So my question is: Is it possible to send this parameter somehome with the http-request node and how?
An example would be great. Thanks in advance.