WHM API:按域

时间:2016-02-29 10:49:21

标签: php api cpanel whm

我正在研究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用户名
  • WHM模块名称
  • 步骤2中给定模块下的功能
  • 参数,将在步骤3中传递给函数

我必须找出cPanel用户名,所以,我现在写了'root'。但没有成功

1 个答案:

答案 0 :(得分:0)