-1

我想将一个 API 与我的一个网站集成,这是我的前辈给的任务。API 是关于搜索已经存在或不存在的域名。请在这个主题上帮助我,请给我一个我可以参考的例子。我的网站是 PHP 的。

4

3 回答 3

3

[编辑 2]正如@Poe 在他的评论中提到的,gethostbyname可能是一个更好的解决方案,因为它适用于任何顶级域,因为它执行 DNS 查询而不是 whois 查询,而且实现起来也更简单,可能更快:

<?php
$ip = gethostbyname('example.com');
if (strstr($ip,"example.com")){
    echo "No match for domain example.com<br />\n";
} else {
    echo "Domain found. Query output: <br />\n".$ip;
}
?>

无论如何,可以注册一个域,但它不链接到任何计算机(例如,虽然它非常罕见,但您可能会得到 www.example.com 的解析,但不是 example.com)

[编辑]我之前没有发布此内容,因为我在连接到端口 43 上的 whois.internic.net 以执行 whois 查询时遇到了一些问题(以为他们已经永久关闭了该服务)。无论如何,这是我刚刚编写的基于fsockopen的解决方案,我认为它比我在使用他们的 CGI Web 脚本之前提供的解决方案要好得多,也更简单。希望它有所帮助(用法:myqueryscript.php?domain=domainiwanttocheck.com):

<?php
$fp = fsockopen("199.7.58.74", 43, $errno, $errstr, 30);
if (!$fp) {
    echo "$errstr ($errno)<br />\n";
} else {
    $query = $_GET['domain']."\r\n";
    $answer= '';
    fwrite($fp, $query);
    while (!feof($fp)) {
        $answer .= fgets($fp, 128)."<br />";
    }
    fclose($fp);
    if (strstr($answer,"No match for")){
        echo "No match for domain ".$_GET['domain']."<br />\n";
    } else {
        echo "Domain found. Query output: <br />\n".$answer;
    }
}
?>

来自 internic 网站,这是实现 whois 查询的 html 代码:

<form method="get" action="http://reports.internic.net/cgi/whois" name="my_form">
            <input type="text" size="30" name="whois_nic" maxlength="80">
            <br>
            <input type="radio" name="type" value="domain" checked>
            Domain<font size="-1"> (ex. internic.net)
            <br>
            <input type="radio" name="type" value="registrar">
            Registrar<font size="-1"> (ex. ABC Registrar, Inc.) 
            <br>
            <input type="radio" name="type" value="nameserver">
            Nameserver (ex. NS.EXAMPLE.COM or 192.16.0.192)<br>
            <br>
            <input type="submit" value="Submit">
  </form>

这意味着您可以发送这样的 whois 查询:http ://reports.internic.net/cgi/whois?whois_nic=domainiwanttocheck.com&type=domain

您可以从脚本发送查询并将响应存储在 DOMDocument 对象中。查看:http ://www.php.net/manual/en/domdocument.loadhtml.php

如果您使用此方法查找域并且该域不存在,您将获得 string No match for domain使用strpos在响应中查找此内容

如果域存在,您可以过滤响应以包含有关注册商等的信息。它将是<pre>响应的 html 标记的内容:

<pre>

Whois Server Version 2.0

Domain names in the .com and .net domains can now be registered
with many different competing registrars. Go to http://www.internic.net
for detailed information.

   Domain Name: GOOGLE.COM
   Registrar: MARKMONITOR INC.
   Whois Server: whois.markmonitor.com
   Referral URL: http://www.markmonitor.com
   Name Server: NS1.GOOGLE.COM
   Name Server: NS2.GOOGLE.COM
   Name Server: NS3.GOOGLE.COM
   Name Server: NS4.GOOGLE.COM
   Status: clientDeleteProhibited
   Status: clientTransferProhibited
   Status: clientUpdateProhibited
   Status: serverDeleteProhibited
   Status: serverTransferProhibited
   Status: serverUpdateProhibited
   Updated Date: 20-jul-2011
   Creation Date: 15-sep-1997
   Expiration Date: 14-sep-2020

>>> Last update of whois database: Sat, 25 Aug 2012 10:15:09 UTC <<<

NOTICE: The expiration date displayed in this record is the date the 
registrar's sponsorship of the domain name registration in the registry is 
currently set to expire. This date does not necessarily reflect the expiration 
date of the domain name registrant's agreement with the sponsoring 
registrar.  Users may consult the sponsoring registrar's Whois database to 
view the registrar's reported date of expiration for this registration.

TERMS OF USE: You are not authorized to access or query our Whois 
database through the use of electronic processes that are high-volume and 
automated except as reasonably necessary to register domain names or 
modify existing registrations; the Data in VeriSign Global Registry 
Services' ("VeriSign") Whois database is provided by VeriSign for 
information purposes only, and to assist persons in obtaining information 
about or related to a domain name registration record. VeriSign does not 
guarantee its accuracy. By submitting a Whois query, you agree to abide 
by the following terms of use: You agree that you may use this Data only 
for lawful purposes and that under no circumstances will you use this Data 
to: (1) allow, enable, or otherwise support the transmission of mass 
unsolicited, commercial advertising or solicitations via e-mail, telephone, 
or facsimile; or (2) enable high volume, automated, electronic processes 
that apply to VeriSign (or its computer systems). The compilation, 
repackaging, dissemination or other use of this Data is expressly 
prohibited without the prior written consent of VeriSign. You agree not to 
use electronic processes that are automated and high-volume to access or 
query the Whois database except as reasonably necessary to register 
domain names or modify existing registrations. VeriSign reserves the right 
to restrict your access to the Whois database in its sole discretion to ensure 
operational stability.  VeriSign may restrict or terminate your access to the 
Whois database for failure to abide by these terms of use. VeriSign 
reserves the right to modify these terms at any time. 

The Registry database contains ONLY .COM, .NET, .EDU domains and
Registrars.
        </pre>

另外,请查看以下相关问题:谁提供 WHOIS API?

于 2012-08-25T10:12:04.313 回答
-1
<?php

if(isset($_GET['domain'])){
    $domain = $_GET['domain'];
} else {
    $domain = "";
}
$api_key = "api_key";
//domain also you can use this api http://api.neoistone.com/domain-check/?apiKey=&domainName=google.com
//if need api key contact us https://www.neoistone.com/contact-us/
//domain also your user the api https://domain-availability.whoisxmlapi.com/api/v1/?apiKey=&domainName=google.com
//if need api key contact us browser https://domain-availability.whoisxmlapi.com

$api = "https://domain-availability.whoisxmlapi.com/api/v1";
        $api .= '?apiKey='.urlencode($api_key);
        $api .= "&domainName=".urlencode($domain);
        $response = array();
        $curl = curl_init();
        curl_setopt_array($curl, array(
        CURLOPT_URL => $api,CURLOPT_RETURNTRANSFER => true,CURLOPT_ENCODING => "",
        CURLOPT_MAXREDIRS => 10,CURLOPT_TIMEOUT => 30,CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
        CURLOPT_CUSTOMREQUEST => "GET",CURLOPT_HTTPHEADER => array("cache-control: no-cache","postman-token: 22890b81-68a3-c75c-7dc5-1d1e6e9d1cf2"),));
        $ch_ap = json_decode(curl_exec($curl),TRUE);
        if (isset($ch_ap['messages'])) {
            $response['status'] = "error";
            $response['message'] = $ch_ap['messages'];
            $response['code'] = $ch_ap['code'];
        } else {
           $curl_response = $ch_ap['DomainInfo'];
           if ($curl_response['domainAvailability'] == "UNAVAILABLE") {
               $response['status'] = "sussfuly";
               $response['meassage'] = 'Domain is '.$domain.' unavailable ';
               $response['code'] = 200;
           } elseif ($curl_response['domainAvailability'] == "AVAILABLE") {
               $response['status'] = "sussfuly";
               $response['meassage'] = 'Domain is '.$domain.' available ';
               $response['code'] = 200;
           } else {
              $response = $curl_response;
           }
        }
        print_r($response);
        curl_close($curl);
?>
于 2020-10-30T09:41:00.580 回答
-1

获取域名和tld

<?php
$host = 'https://compute-1.hyd.in.securedatacenter.host';
preg_match("/[^\.\/]+\.[^\.\/]+$/", $host, $matches);
$data = explode('.',$matches['0']);

//print_r($data);
echo 'Your domain name is :- '.$data['0'].'<br>';
echo 'Your tld is :- '.$data['1'];
?>

响应预览

于 2021-08-22T10:31:53.993 回答