Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I upload a file in a POST field on my website via curl directly rather using curl in php? In php you can do this with:

<?
$fileupload="image.jpg";
$c = curl_init("file");
curl_setopt($c, CURLOPT_POST, true);
curl_setopt($c, CURLOPT_POSTFIELDS,
array('Filedata'=>"@$fileupload",'folder'=>'/target/'));
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
curl_exec($c);
curl_close($c);
?>

but how can this be done in a linux bash script with curl?

share|improve this question
Possibly duplicate of [“Translating” a POST File-Upload HTML to a curl command line] (stackoverflow.com/questions/6218954/…) – cmnajs Nov 21 '12 at 18:40
I have two POST fields – Michael Nov 21 '12 at 18:57

1 Answer

The CURLOPT_POSTFIELDS option sent as a hash array becomes a series of -F uses. Something similar to this:

curl -F Filedata=@image.jpg -F folder=/target/ [URL]

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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