Closed
Description
curl -s -H x-via:bar -H via:foo 'https://httpbin.org/headers' | jq .
{
"headers": {
"Accept": "*/*",
"Connection": "close",
"Host": "httpbin.org",
"User-Agent": "curl/7.54.0",
"X-Via": "bar"
}
}
The via
header does not show up in the result, while x-via
does. I would expect both header to be reflected.
Activity