Check content encoding of a response (curl)
curl -I -H "Accept-Encoding: gzip,deflate,br" | grep -i "content-encoding"
Sends an HTTP request and checks the Content-Encoding header to see if the response is compressed (gzip, deflate, or br).
curl -I -H "Accept-Encoding: gzip,deflate,br" | grep -i "content-encoding"
Sends an HTTP request and checks the Content-Encoding header to see if the response is compressed (gzip, deflate, or br).