A lightning talk about cURL
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

351 B

HTTP POST Data

  • -X METHOD - Set HTTP Request Method
  • -d DATA - Send request form data
$ curl -X POST -d "name=brett&talk=curl" http://httpbin.org/post
{
  "form": {
    "name": "brett",
    "talk": "curl"
  },
  "headers": {
    "Host": "httpbin.org",
    "Content-Type": "application/x-www-form-urlencoded",
    ...
  },
  ...
}