Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 168 Bytes

HTTP_request.md

File metadata and controls

11 lines (10 loc) · 168 Bytes

GET

curl http://url/path?a=x&b=y

POST

curl -X POST http://url/path \
    -H "Content-Type: application/json" \
    -d '{"a":"x", "b":"y"}'