Spring restTemplate の使用に問題があります。
私がアクセスしようとしているRest ServiceのAPIドキュメント(PHPのみ)によると。POST の正しい形式は次のとおりです。
curl -d "data={\"client_email\":\"steve@martiancraft.com\",\"client_name\":\"Steve Ryner\",\"employee_id\":0,\"service_id\":20216,\"start_date\":\"2012-08-15 09:00:00\",\"note\":\"This is a test.\"}" http://www.setster.com/api/v2/company/7089/appointment?session_token=niab4ptf9mjjem41cooso389f3
その応答を取得するには:
{
"statusCode":0,
"statusDescription":"OK",
"data":{
"status":2,
"client_id":103352,
"client_email":"steve@martiancraft.com",
"client_name":"Steve Ryner",
"company_id":"7089",
"employee_id":9862,
"location_id":"13832",
"start_date":"2012-08-15 14:00",
"end_date":"2012-08-15 15:00",
"length":3600000,
"note":"This is a test.",
"service_id":20216,
"type":"60 Min Swedish",
"duration_padding":0,
"repeat_type":0,
"subservices":"",
"timezone_dif":-18000,
"price":"60",
"custom_fields":"[]",
"client_phone":"",
"client_address":"",
"payment_pending":0,
"id":171302483
}
}
私のコードの重要な部分は次のとおりです。
RestTemplate restTemplate = new RestTemplate();
Map<String, String> data = new HashMap<String, String>();
data.put("client_name", "Alexandre Moraes");
data.put("client_email", "kalvinmoraes@gmail.com");
data.put("client_phone", "98065867");
data.put("employee_id", "0");
data.put("location_id", "16675"); // Here i have to specify the "Location_ID" because there is more than just one
data.put("start_date", "2013-05-03 09:15:00");
data.put("service_id", "18499");
String result = restTemplate.postForObject("http://setster.com/api/v2/company/6788/appointment/?session_token="+session_token, data, String.class);
resp.setContentType("text/html;charset=UTF-8");
PrintWriter out = resp.getWriter();
out.println(result);
しかし、そのpostForObjectを実行すると、何かが間違って送信されたかのように、応答は400 Bad 要求になります。
WARNING: POST request for "http://setster.com/api/v2/company/6788/appointment/?session_token=[censored]" resulted in 400 (Bad Request); invoking error handler
WARNING: StandardWrapperValve[setster]: PWC1406: Servlet.service() for servlet setster threw exception
送信したデータの形式が間違っている可能性があります。しかし、その情報をどのように管理すればよいかわかりません。
誰かが私が間違っていることを知っていますか?