You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@pulkitsinghal please see my fork [https://github.com/prasunsultania/requestify], I have pushed code to return buffered response, which can then be unzipped manually in the response handler
eg:var zlib = require('zlib');
zlib.gunzip(res.bufferedResponse, function(err, data){console.log(err); console.log(data.toString());})
If the response is returned with
content-encoding=gzip
, where can we hook into requestify to decompress that?The text was updated successfully, but these errors were encountered: