4

I have a REST API that I'm trying to get working with GZIP compression. I'm testing the API using Paw. My response is application/json. Three Paw-specific questions:

  1. Once I get this working on the server, is there anything I need to do to configure Paw to accept a GZIP'd response?
  2. Will Paw automatically un-compress for me?
  3. How can I verify that the response was compressed from the server?
Chris Williams
  • 11,647
  • 15
  • 60
  • 97

1 Answers1

9

Yes paw does support compressed responses:

To ensure your server returns a compressed respons ensure that 'gzip' if the first option for the Accept-Encoding header.

Screen shot of headers

Paw will automatically uncompress responses, to verify that the response is compress check the responses headers.

enter image description here

Matthaus Woolard
  • 2,310
  • 11
  • 13