我正在研究WHM API并希望通过传递域名来查找cPanel用户名。
注意:我有WHM的凭据。
此处https://documentation.cpanel.net/pages/viewpage.action?pageId=1507786
不存在此类文档那么,有没有办法实现呢?
更新
现在,我正在使用xmlapi.php,这是我到目前为止所尝试的内容。
require_once(base_path() . "/vendor/cpanel_api/xmlapi.php");
$ip = env('SERVER_IP', "127.0.0.1"); //your server's IP
$xmlapi = new \xmlapi($ip);
$xmlapi->password_auth(env('CPANEL_USER', "root"),env('CPANEL_PASSWORD', "")); //the server login info for the user you want to create the emails under
$xmlapi->set_output('json');
$xmlapi->set_debug(1);
$params = array('domain'=>$domain, 'searchtype'=>'domain'); //quota is in MB
$res = json_decode($xmlapi->api2_query('root', "listaccts", "", $params), true);
print_r($res);
在$xmlapi->api2_query
方法中,有4个参数
我必须找出cPanel用户名,所以,我现在写了'root'。但没有成功
答案 0 :(得分:0)
请尝试使用cPanel API。
以下是一些有用的API文档。
https://documentation.cpanel.net/display/SDK/Guide+to+cPanel+API+2 https://documentation.cpanel.net/display/SDK/Guide+to+WHM+API+1