curl命令行 get/post请求
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了curl命令行 get/post请求相关的知识,希望对你有一定的参考价值。
参考技术A GET请求:curl -X GET --header'Accept: application/json''http://XXX?phone=XXX&content=XXX'
POST请求:
curl -X POST --header'Content-Type: application/json'--header'Accept: application/json'-d'"phone":"XXX","content":"XXX"''http://XXX'
以上是关于curl命令行 get/post请求的主要内容,如果未能解决你的问题,请参考以下文章