当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP WHMCS DomainGetNameservers用法及代码示例


获取域的当前名称服务器。

连接到注册商并获取域的名称服务器

请求参数

参数 类型 说明 必需的
action string “DomainGetNameservers” Required
domainid int 要获取其名称服务器的域的 id Required

响应参数

参数 类型 说明
result string 操作结果:成功或错误
ns1 string 域上的第一个名称服务器
ns2 string 域上的第二个域名服务器
ns3 string 域上的第三个名称服务器
ns4 string 域上的第四个域名服务器
ns5 string 域上的第五个域名服务器

示例请求 (CURL)

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://www.example.com/includes/api.php');
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,
    http_build_query(
        array(
            'action' => 'DomainGetNameservers',
            // See https://developers.whmcs.com/api/authentication
            'username' => 'IDENTIFIER_OR_ADMIN_USERNAME',
            'password' => 'SECRET_OR_HASHED_PASSWORD',
            'domainid' => '1',
            'responsetype' => 'json',
        )
    )
);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($ch);
curl_close($ch);

示例请求(本地 API)

$command = 'DomainGetNameservers';
$postData = array(
    'domainid' => '1',
);
$adminUsername = 'ADMIN_USERNAME'; // Optional for WHMCS 7.2 and later

$results = localAPI($command, $postData, $adminUsername);
print_r($results);

示例响应 JSON

{
    "result": "success",
    "ns1": "ns1.example.com",
    "ns2": "ns1.example.com"
}

错误响应

可能的错误条件响应包括:

  • 未找到域 ID
  • 不支持注册器函数
  • 注册商错误消息

相关用法


注:本文由纯净天空筛选整理自whmcs.com大神的英文原创作品 DomainGetNameservers。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。