标签: curl http-headers
我正在尝试使用curl发送带有自定义标头(curl http://example.com -H "Foo: bar")的HTTP请求,并且发现当标头到达时,它被curl转换为小写(上方的{ {1}}标头收到为Foo)
curl http://example.com -H "Foo: bar"
Foo
如何在请求中保留标题的大小写?
答案 0 :(得分:0)
尝试强制curl使用HTTP / 1.1-默认为HTTP / 2,spec指出标头必须小写。
foo: bar