📗 API Reference Docs Problem
- Subsystem: http.ClientRequest
Location
Affected url("https://github.com/nodejs/node/issues/s"):
Description
DEP0066 implies that using OutgoingMessage.prototype.getHeaderNames() is equivalent to the now deprecated OutgoingMessage.prototype._headerNames property which is not the case.
OutgoingMessage.prototype._headerNames contains a mapping from lowercase to the exact header names that were sent with the request:
{authorization: "Authorization", host: "Host"}
Where OutgoingMessage.prototype.getHeaderNames() returns only lowercase names.
The now deprecated _headerNames property is useful in http debug logging modules that print the exact header names being sent, as some servers are still picky about those. Not having access to the actual header names will make debugging harder, assuming node still sends the headers as they are sent through the http.request method.
Besides the documentation being misleading about this I'd like to know if there is a way to access the headers being sent going forward, since _headerNames is now deprecated.
📗 API Reference Docs Problem
Location
Affected url("https://github.com/nodejs/node/issues/s"):
Description
DEP0066 implies that using
OutgoingMessage.prototype.getHeaderNames()is equivalent to the now deprecatedOutgoingMessage.prototype._headerNamesproperty which is not the case.OutgoingMessage.prototype._headerNamescontains a mapping from lowercase to the exact header names that were sent with the request:Where
OutgoingMessage.prototype.getHeaderNames()returns only lowercase names.The now deprecated
_headerNamesproperty is useful in http debug logging modules that print the exact header names being sent, as some servers are still picky about those. Not having access to the actual header names will make debugging harder, assuming node still sends the headers as they are sent through thehttp.requestmethod.Besides the documentation being misleading about this I'd like to know if there is a way to access the headers being sent going forward, since
_headerNamesis now deprecated.