curl コマンドでPOSTするには -d オプションつければイイ
コマンドからPOSTする
curl -d 'id=iphone4&name=takuya' http://example.com/index.php
個人的にはruby のmechanizeが便利で好きがだが、POST送るだけならcURLだけでも充分なのです。
この場合
- METHOD ⇛ POST
- Content-Type ⇛ application/x-www-form-urlencoded
で送信されます。
または
curl -d name=takuya -d hatena_id=takuya_1st http://example.com/oauth.php
のようにクオート無しで、複数連ねて書くことも出来ます。