NodeJS 8.14.0 introduced a limit of 8KB to the size of HTTP headers that can be received.
This prevents HTTP API methods such as setText from working if the text content exceeds that size.
A possible solution would be to support the POST method in addition to GET, with any JSON object found in the HTTP body augmenting the URL parameters.
NodeJS 8.14.0 introduced a limit of 8KB to the size of HTTP headers that can be received.
This prevents HTTP API methods such as
setTextfrom working if the text content exceeds that size.A possible solution would be to support the
POSTmethod in addition toGET, with any JSON object found in the HTTP body augmenting the URL parameters.