由于无法使用 Postman 方式调取应用的接口,只能通过连接服务器后再进行调取
可以通过 curl 方式在服务器上发送 HTTP 请求
-X 请求方式
-H 请求头
-d 请求体参数
curl http://xxxxxx/xxx?userName=test&password=test
curl -X POST -H "Content-Type: application/json; charset=utf-8" -H 'token:"token"' -d '{"key":"value","key":"value"}' http://xxxxxx/xxx/xxx