更新时间:2024-08-03 GMT+08:00
查找Manager用户
功能简介
通过访问Manager接口完成查找用户。
代码样例
以下代码片段是查找用户的示例,在“rest”包的“UserManager”类的main方法中。
//访问Manager接口完成查找用户列表
operationName = "QueryUserList";
operationUrl = webUrl + QUERY_USER_LIST_URL;
String responseLineContent = httpManager.sendHttpGetRequest(httpClient, operationUrl, operationName);
LOG.info("The {} response is {}.", operationName, responseLineContent);
父主题: 开发Manager应用