Linux curl发送post请求携带form参数(Content-Type: application/x-www-form-urlencoded)
Posted a772304419
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux curl发送post请求携带form参数(Content-Type: application/x-www-form-urlencoded)相关的知识,希望对你有一定的参考价值。
-H "Content-Type: application/x-www-form-urlencoded"
可以省略
curl -d "param1=value1¶m2=value2" -H "Content-Type: application/x-www-form-urlencoded" -X POST http://localhost:3000/data
以上是关于Linux curl发送post请求携带form参数(Content-Type: application/x-www-form-urlencoded)的主要内容,如果未能解决你的问题,请参考以下文章
linux shell中curl 发送post请求json格式问题