Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经编写了一个 REST API,我正在尝试测试一个没有 Accept 标头的请求。如果我通过 Curl 发送请求,它会添加一个默认标头Accept: */*,如果您添加 Curl 的 -v 参数,您可以看到这一点。
Accept: */*
有没有办法通过没有 Accept 标头的 Curl 发送请求?
在冒号右侧传入一个没有值的标头以将其从请求中删除,即使 curl 会自行添加它。
curl -H 'Accept:' http://example.com/