Linux 发送GET、POST请求

GET请求

不带参数:curl "http://www.baidu.com"

带参数:curl -v http://127.0.0.1:80/xcloud/test?version=1&client_version=1.1.0&seq=1001&host=aaa.com


POST请求

curl -i -k -H "Content-type: application/json" -X POST -d '{"AppKey":"***", "AppSecret":"*****"}' http://127.0.0.1:8080/xxx/xxxx/xxxx

你可能感兴趣的:(Linux 发送GET、POST请求)