我正在尝试使用 java rest API 在 zephyr 中的循环中添加一个阶段。我编写了以下代码。
String auth = new String(Base64.encode("test.manager:test.manager"));
Client client= Client.create();
WebResource webresource = null;
ClientResponse response=null;
String responseData=null;
String cyclephase ="{\"remoteRepository\": {\"remoteData\": {\"id\":\"10\",\"name\": \"phase10\"} },\"startDate\": \"1447957800000\", \"endDate\": \"1448389800000}\"}";
webresource = client.resource("http://localhost:81/flex/services/rest/latest/cycle/7/cyclePhase/");
response= webresource.header("Authorization", "Basic " + auth).type(MediaType.APPLICATION_JSON).accept(MediaType.APPLICATION_JSON).post(ClientResponse.class,cyclephase);
responseData =response.getEntity(String.class);
return responseData;
我收到 500 个内部服务器错误。请帮我解决这个问题