欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

curl demo 博客分类: linux  

程序员文章站 2024-02-23 12:28:52
...
curl -X POST -d "timestamp=1553169897099&phone=13500000000" http://xxx.xx.xxx.xxx:8903/verifiy/send


curl -X POST --data '{"timestamp":"1553169897099","phone":"13500000000"}' http://xxx.xx.xxx.xxx:8903/verifiy/send

-d/--data
是直接写formdata, 所以上面的 {"timestamp":...},
其实是body={"timestamp":...},
而不是parameterMap后的 phone=13500000000
再如:
-d 'abcd'
则body=abcd

-d 'a=1&b=2'
则body=a=1&b=2, 即jsp解析参数后的parameterMap: a=1, b=2


curl -H 'clienttype:ENTERPRISE_SERVICES' -H 'Authorization:YnJlcmNqeGo4ZGVwYWR0NjhiOHd0NjBoZngwZmZhN2k=' http://106.14.191.81/microservice/users/user/findUserInfoById/155290211279504511