My goal is to upload a CouchDB document from my Windows machine to a remote server using cygwin/curl.
Here is a tutorial that shows how to do the same on a Mac: http://net.tutsplus.com/tutorials/getting-started-with-couchdb/
curl -X POST http://127.0.0.1:5984/mycouchshop/ -d @person.json -H "Content-Type: application/json
How can I do the same with Windows & CygWin?
How to send a file using Curl? To upload a file, use the -d command-line option and begin data with the @ symbol. If you start the data with @, the rest should be the file's name from which Curl will read the data and send it to the server. Curl will use the file extension to send the correct MIME data type.
After opening cygwin.
step 1 - CD into the directory that contains the file you would like to post via CURL:
cd ../
cd /cygdrive/c/Users/[put user name here]/Documents/[more directories here]/
Note: The strange part is having to go through the "cygdrive" directory.
step 2 - Use CURL to send the file:
curl -X POST http://mywebsite.com/path/to/directory -d @some_file.extension -H "Content-Type: application/json"
Replace "mywebsite.com...", "some_file.extension" and "application/json" with actual values.
Looks like you got it. Also on Windows, the single-quote ('
) is not allowed. Use double-quote for your JSON data and then use \"
for double-quotes inside the JSON.
curl -XPUT http://localhost:5984/db/doc -d "{\"like\": \"this\"}"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With