curlでデータをPOSTするサンプル

2017年11月25日

1.postリクエスト
curl -d “param1=value1&param2=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

Linux

Posted by arkgame