When I use version 0.6.4, I can leave the request header empty.
For example, changing
upgrade-insecure-requests: 1
to
upgrade-insecure-requests:
This allows me to remove that header
Because XHR interfaces don't have this kind of header
However, in version 0.7.1, when I leave it empty
It displays as follows instead of removing it:
GET / HTTP/1.1
Host: test.requestcatcher.com
upgrade-insecure-requests:
But I also realized that some websites have empty headers
For example, Authorization:
It must be included to access, even if it's an empty value
Is there a better way to handle this?
When I use version 0.6.4, I can leave the request header empty. For example, changing upgrade-insecure-requests: 1 to upgrade-insecure-requests: This allows me to remove that header Because XHR interfaces don't have this kind of header However, in version 0.7.1, when I leave it empty It displays as follows instead of removing it:
GET / HTTP/1.1 Host: test.requestcatcher.com upgrade-insecure-requests:
But I also realized that some websites have empty headers For example, Authorization: It must be included to access, even if it's an empty value Is there a better way to handle this?