GET
パラメータをつけたい場合
app.get "http://localhost:3000/api/users/login", {'user_id' => 1}
=> 200
POST
パラメータをつけたい場合
app.get "http://localhost:3000/api/users/list.json", {'type' => 1}
=> 200
リクエストヘッダをつけたい場合
app.get "http://localhost:3000/api/users/list.json", nil, {'HTTP_TOKEN' => "xxxxxxxxxxxx"}
=> 200
※第二引数はparams
レスポンスの内容をみたい場合
app.response.body