skip to Main Content

Javascript – How to use nodejs's zlib to unzip GzipStream from .net?

Im using API gateway from AWS. Data comein is the binary format from somebody's post request. And we know it is created by :https://learn.microsoft.com/en-us/dotnet/api/system.io.compression.gzipstream?view=netframework-4.6 body: `x1F�bx00x00x00x00x00x04x00��]o�0x14���oG��x0Fx02��t�&�x1B"x19�6��I��7'����x10�}vn` +`x1F�bx00x00x00x00x00x04x00��]o�0x14���oG��x0Fx02��t�&�x1B"x19�6��I��7'����x10�}vn` ...., isBase64Encoded: false ... 'Content-Type': 'application/gzip', My current attempt const B = new…

VIEW QUESTION
Back To Top
Search