I have a simple node script to process some data from my home automation API. Everything worked fine till last Node update. Now, with Node version 4.3.0 or 5.6.0, the http m
I find this commit log. The problem seems is Content-Length and Transfer-encoding: chunked headers exist together:
Content-Length
Transfer-encoding: chunked
the server is sending both a Content-Length header and a Transfer-Encoding: chunked header, which is a violation of the HTTP spec.