我正在尝试使用zephyr javarest API在zephyr中创建一个"循环"。我已经编写了以下客户端代码来创建循环。
String auth = new String(Base64.encode("test.manager:test.manager"));
Client client1 = Client.create();
String cycle ="{'name': 'Cycle with TCR phase', 'build': '7993', 'environment': 'MyOwnEnv', 'startDate': 1447957800000, 'endDate': 1448389800000, 'status': 0, 'releaseId': 1, 'remotePhases': []}";
WebResource webresource = client1.resource("http://localhost:81/flex/services/rest/latest/cycle");
ClientResponse response = webresource.type(MediaType.APPLICATION_JSON_TYPE).accept(MediaType.APPLICATION_JSON_TYPE).post(ClientResponse.class, cycle);
String responseData =response.getEntity(String.class);
System.out.println(responseData);
我收到以下错误"POST http://localhost:81/flex/services/rest/latest/cycle returned a response status of 500 Internal Server Error"
。请让我知道代码中的错误是什么,或者是否需要在zephyr 中设置任何配置
请尝试使用POST请求和参数,例如:
POSThttp://localhost:80/flex/services/rest/latest/cycle/name=Cycle
TCR阶段,并让我们知道这个问题是否仍然存在