get 请求示例
示例1,带用户名密码:
curl -k -u admin:pwd123-X GET https://www.baidu.com/test/api\!userapi
示例2,不带用户名密码:
curl -k --insecure "https://www.baidu.com"
注意:-u后面是用户名密码,!是特殊字符,需要加转义反斜杠
post请求示例
#application/x-www-form-urlencoded
$ curl localhost:3000/api/basic -X POST -d 'hello=world'
#application/json
$ curl localhost:3000/api/json -X POST -d '{"hello": "world"}' --header "Content-Type: application/json"
参考: