Xymon 4.3.0-0.beta2
Ubuntu 10.04.04
我正在寻找设置霍比特人测试以对 HTTP URL 进行 API 调用的方法
我得到了以下信息,但我所能找到的只是监控 HTTP URL 或 PING 和 http Auth 的能力,但没有找到我需要的东西。
https://sub.domain.com/groups/api/domain/user_exists
然后 :
'http' => array(
'method' => 'POST',
'content' => $data,
'header'=> "Content-Type: application/json\r\n" .
"X-API-SECRET:
Long-Hash-of-Letters-and-Numbers####\r\n" .
"Accept: application/json"
);
1)检查是否存在有效用户:
$data = {"username":"admin"};
结果应为 HTTP 响应代码 200 和内容的 JSON
2)检查不存在的用户
$data = {"username":"0"};
结果应为 HTTP 响应代码 200,且内容为空
这有可能吗?有什么好的读物可以帮助我入门吗?或者答案 :P。
谢谢,