Linux 使用 curl 调用接口

由于无法使用 Postman 方式调取应用的接口,只能通过连接服务器后再进行调取

可以通过 curl 方式在服务器上发送 HTTP 请求

-X 请求方式

-H 请求头

-d 请求体参数

调用 get 请求

curl http://xxxxxx/xxx?userName=test&password=test

调用 post 请求

curl -X POST -H "Content-Type: application/json; charset=utf-8" -H 'token:"token"' -d '{"key":"value","key":"value"}' http://xxxxxx/xxx/xxx

你可能感兴趣的:(linux,运维,服务器,java)