vote up 9 vote down star

How do I make a POST request with curl command line tool?

flag

73% accept rate
This is a duplicate of stackoverflow.com/questions/28395/… which has lots of good answers. – Mark Biek Sep 17 '08 at 15:43
2  
No, this is not a duplicate! That post is about doing so in PHP, I'm asking about the command line tool – Laurie Young Sep 17 '08 at 17:01
Thanks for clarifying your original question. :) – Mark Biek Sep 17 '08 at 17:03

9 Answers

vote up 23 vote down check
curl -d "param1=value1&param2=value2" http://example.com/resource.cgi

or

curl -F "fileupload=@filename.txt" http://example.com/resource.cgi

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_formadd() function to build your form before submitting it in the usual way. See the libcurl documentation for more information.

link|flag
vote up 0 vote down

http://curl.haxx.se/docs/httpscripting.html

link|flag
vote up 0 vote down

curl -X POST http://example.com

link|flag
vote up 0 vote down
curl -v --data-ascii var=value http://example.com

there are many more options, check curl --help for more info

link|flag
vote up 2 vote down

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

link|flag
vote up 0 vote down

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?

link|flag
2  
Well, in a month or two, this might be the search engines first result. – David Sokol Sep 17 '08 at 15:43
2  
The intent of stackoverflow is that it becomes the authoratative source for programming questions, I want to come here and have answers to such questions, – Laurie Young Sep 17 '08 at 16:50
1  
That's a ridiculous ideal. The authoritative source for questions like this will always be the manual. – Jim Sep 17 '08 at 17:02
3  
Ironically (or perhaps not), the first search result for the aforementioned term is now this question. :P – shek Aug 18 at 1:24
This is not an answer. Telling someone to "google it" is worse than someone asking an easy question. People ask questions on Stack Overflow because of its features, such as reputation. – smartj 2 days ago
vote up 0 vote down

curl -d foo=bar http://example.org/post-url

link|flag
vote up 0 vote down

curl -d "param=value&param2=value2" "http://www.mysite.com/page.php"

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.