最近在使用curl调用POST接口时,报http 411错误
原请求方式:
curl http://localhost:8080/test -X POST
报错信息:
HTTP Error 411. The request must be chunked or have a content length.
修改后的请求方式:
curl http://localhost:8080/test -X POST –header "Content-Length: 0"
在加上 –header “Content-Length: 0” 后接口可以正常调用
来自 https://blog.csdn.net/www419216217/article/details/121165883