How do I make a POST request with curl command line tool?
|
|
|||||||||
|
|
|
or
For more information see the cURL manual. You might also find the cURL tutorial on emulating a web browser helpful. With libcurl, you'd use the |
||
|
|
|
|
curl -X POST http://example.com |
||
|
|
|
|
there are many more options, check curl --help for more info |
||
|
|
|
|
curl -d "name=Rafael%20Sagula&phone=3320780" http://www.where.com/guest.cgi is the example found in the Curl Example Manual that can be found here : http://www.cs.sunysb.edu/documentation/curl/index.html |
||
|
|
|
|
This is trivially answered with any search engine. Edit: Right now, if you type How do I make a POST request with curl into Google, the very first hit leads to a tutorial that not only answers the question, but is a great deal more informative than this page on Stack Overflow. Using Stack Overflow as a substitute for a job that search engines can do very well is pointless. How about using Stack Overflow for questions that can't be answered by a search engine easily? |
||||||||||||||||||
|
|
|
curl -d foo=bar http://example.org/post-url |
||
|
|
|
|
curl -d "param=value¶m2=value2" "http://www.mysite.com/page.php" |
||
|
|
