linux curl post/put请求
Posted wangshunyao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux curl post/put请求相关的知识,希望对你有一定的参考价值。
案列:
-X: 请求方式
--header: 请求header
-d: 请求的数据
最后跟上请求的地址
curl -X PUT --header ‘Content-Type: application/json‘ --header ‘Accept: application/json‘ -d ‘{"message":"aaaa","exchange_id":"123" }‘ ‘http://localhost:8917/la-xin-activity-exchange-record-service/obsolete-exchange-record‘
以上是关于linux curl post/put请求的主要内容,如果未能解决你的问题,请参考以下文章
Gitlab使用Axios或Curl请求发布/放入节点 - 无法写入资源 - 400错误
解析HTTP协议六种请求方法,get,head,put,delete,post有啥区别