7

Is there a way to get the total size (in bytes) of the request header that the browser is sending to the server for each request?

stepanian
  • 171
  • 1
  • 1
  • 4

1 Answers1

11

Sort of...

  1. go to the network tab and right click the first item and click copy as cURL (this is how you will get the header size.

  2. Then go to terminal and do your curl command curl ... -w '%{size_request} %{size_upload}' which will print out the request size at the end.

Curl is the only way i know of doing it.