Paw - 如何禁用 Content-Type header?
Paw - How do I disable Content-Type header?
我正在测试一个 API 如果提供了 Content-Type
HTTP header 将无法工作,请求如下所示:
# this works
curl -X "POST" "https://example.com" \
-d "text=text content"
如果我在 Paw 中创建此请求,Content-Type
会自动添加并且请求变为
# this doesn't work for this API
curl -X "POST" "https://example.com" \
-H 'Content-Type: text/plain; charset=utf-8' \
-d "text=text content"
那么如何禁用 Content-Type
header?设置为空值也不行。
我正在测试一个 API 如果提供了 Content-Type
HTTP header 将无法工作,请求如下所示:
# this works
curl -X "POST" "https://example.com" \
-d "text=text content"
如果我在 Paw 中创建此请求,Content-Type
会自动添加并且请求变为
# this doesn't work for this API
curl -X "POST" "https://example.com" \
-H 'Content-Type: text/plain; charset=utf-8' \
-d "text=text content"
那么如何禁用 Content-Type
header?设置为空值也不行。