GET
curl -b {cookie_info} -X GET {url}
curl -b 'some_id=hoge; some_token=fuga' -X GET http://hoge.com
PUT
curl -b {cookie_info} -H {header_info} -X PUT -d {json} {url}
curl -b 'some_id=hoge; some_token=fuga' -H "Accept: application/json" -H "Content-type: application/json" -X PUT -d '{"id":100,"name":"bar"}' http://hoge.com
POST
curl -b {cookie_info} -H {header_info} -X POST -d {json} {url}
curl -b 'some_id=hoge; some_token=fuga' -H "Accept: application/json" -H "Content-type: application/json" -X POST -d '{"id":100,"name":"bar"}' http://hoge.com