curlでデータをPOSTするサンプル
1.postリクエスト
curl -d “param1=value1¶m2=value2" “http://www.sample.com"
2.jsonデータをpostする
curl -l -H “Content-type: application/json" -X POST -d '{“user":"yamada","password":"test"}’ http://domain/apis/users.json
Coding Changes the World
1.postリクエスト
curl -d “param1=value1¶m2=value2" “http://www.sample.com"
2.jsonデータをpostする
curl -l -H “Content-type: application/json" -X POST -d '{“user":"yamada","password":"test"}’ http://domain/apis/users.json