需求

curl 可以进行简单的网络调试,那么如何使用?

解决

curl 可以有很多命令,常用的如下:

  • -X: –request
  • -L: –location
  • -v: –verbose
  • -H: –header
  • -d: –data

http 相关

get

curl -X GET "http:xxx"

post

curl -X POST -H "content-type: application/json" -d '{"timeout":"10000","type":"public"}' "http:xxx"

包含用户登陆

curl --user "dddxyz:d324598@xyz" -X POST -H "content-type: application/json" -d "{\"launcherCode\":\"232323\"}" "http://10.12.5.100:3349/codemiddle/stage/codingCode/getInfo"

参考