我正在尝试使用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个内部服务器错误。请对此提供帮助

最佳答案

看来您缺少url中的bulkassign参数。请参考其余呼叫POST

POSThttp://localhost:80/flex/services/rest/latest/cycle/id/cyclePhase?bulkassign=bulkassign on http://docs.zee.apiary.io/#reference/cycle/add-cyclephase-to-cycle/add-cyclephase-to-cycle

09-27 09:47