curl -H 'API_KEY: key' -H 'API_TOKEN: token' 'http://test.example.com/api/v1/login' --json '{"userid": "test1", "password": "test1234"}'
curl -X 'PUT' -d '{"title": "吾輩は猫である", "author": "夏目漱石"}'  -H 'Content-Type: application/json' -H 'API_KEY: key' -H 'API_TOKEN: token' 'http://test.example.com/api/v1/book'
curl -H 'API_KEY: key' -H 'API_TOKEN: token' 'http://test.example.com/api/v1/book'
curl -H 'API_KEY: key' -H 'API_TOKEN: token' 'http://test.example.com/api/v1/book/1'
curl -X 'POST' -d '{"title": "夢十夜", "author": "夏目漱石"}' -H 'Content-Type: application/json' -H 'API_KEY: key' -H 'API_TOKEN: token' 'http://test.example.com/api/v1/book/1'
curl -H 'Authorization: Bearer token' -H 'API_KEY: key' -H 'API_TOKEN: token' 'http://test.example.com/api/v1/user/1'
curl -H 'Authorization: Bearer token' -H 'API_KEY: key' -H 'API_TOKEN: token' 'http://test.example.com/api/v1/user/1' -X PUT --json '{"name": "Alice"}'
curl -H 'Authorization: Bearer token' -H 'API_KEY: key' -H 'API_TOKEN: token' 'http://test.example.com/api/v1//admin/userlist'
