Skip to content

Instantly share code, notes, and snippets.

@prestontimmons
Created May 8, 2012 19:02
Show Gist options
  • Save prestontimmons/2638529 to your computer and use it in GitHub Desktop.
Save prestontimmons/2638529 to your computer and use it in GitHub Desktop.
Posting data with curl

Posting data to a url

curl -d "param1=123&param2=456" http://example.com

Posting a multi-part request with a photo attachment

curl -F "photo=@myphoto.jpg" -F "param1=123" -F "param2=456" http://example.com
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment