Curl使用

阅读更多
Curl Usage Chinese Guide
http://www.ruanyifeng.com/blog/2011/09/curl.html

使用curl测试web应用程序(RESTful webservice)
http://www.codingpedia.org/ama/how-to-test-a-rest-api-from-command-line-with-curl/
https://wiki.duraspace.org/display/DURACLOUDDOC/REST+API+Examples+Using+curl

Use curl to send POST request

For Linux
curl -H "Content-Type: application/json" -X POST -d '{"username":"xyz","password":"xyz"}' http://localhost:3000/api/login

For windows
single quotes around json did not work and I ended up escaping double quotes. curl -X POST -H "Content-Type: application/json" -d "{ \"key1\": \"value1\" }" http://localhost:3000/api/method

Quote from
http://stackoverflow.com/questions/7172784/how-to-post-json-data-with-curl-from-terminal-commandline-to-test-spring-rest

你可能感兴趣的:(curl,http,REST,web,service)