我正在尝试将ITop事件详细信息集成到我的应用程序中。我正在跟踪网址enter link description here
中描述的网络服务我想要使用Java进行连接。这是我的代码
HttpURLConnection连接;
URL serverUrl =新的URL(“ itop url”);
字符串json_data =“ { “ operation”:“ core / get”, “ class”:“事件”, “键”:“选择事件” }“; 连接=(HttpURLConnection)serverUrl.openConnection(); connection.setRequestMethod(“ POST”); connection.setRequestProperty(“ Content-Type”,“ application / x-www-form-urlencoded”); connection.setRequestProperty(“ auth_user”,“ admin”); connection.setRequestProperty(“ auth_pwd”,“ admin”); connection.setRequestProperty(“ json_data”,json_data); int responseCode = connection.getResponseCode();
我使用邮递员客户端获得了结果。我要如何获取数据。任何帮助都是可观的。