如何使用CURL / CygWin从本地Windows机器发送文件到服务器?
我的目标是使用cygwin / curl从我的Windows机器上传一个CouchDB文档到远程服务器。
这里是一个教程,展示了如何在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
我如何用Windows和CygWin做同样的事情?
打开cygwin后。
步骤1 - 将CD放入包含您想通过CURL发布的文件的目录中:
cd ../
cd /cygdrive/c/Users/[put user name here]/Documents/[more directories here]/
注意:奇怪的部分是不得不通过“cygdrive”目录。
第2步 - 使用CURL发送文件:
curl -X POST http://mywebsite.com/path/to/directory -d @some_file.extension -H "Content-Type: application/json"
用实际值替换“mywebsite.com ...”,“some_file.extension”和“application / json”。
看起来你知道了。 在Windows上,也不允许使用单引号( '
)。 对您的JSON数据使用双引号,然后在JSON内部使用"
来表示双引号。
curl -XPUT http://localhost:5984/db/doc -d "{"like": "this"}"
链接地址: http://www.djcxy.com/p/8531.html
上一篇: How to use CURL/CygWin to send files from local Windows machine to Server?
下一篇: Sending nested json object in POST method using Postman to Spring REST API