我正在使用執行WhoIs查詢來確定域的可用性的API。使用WhoIs來確定域可用性
然而,似乎每個TLD給出了不同類型的響應,所以我要爲每一個創建自定義搜索:
result.match("No match for") //.com
result.match("NOT FOUND") //.info, .org
!result.match("Administrative")//.biz
result.match("Invalid query or domain")//.tk
!result.message.match("registered")//.ca
result.match("No Match")//.edu
result.match("Status: free")//.de
result.match("Not found:")//.de
有數百個頂級域名經歷。當然,這不是做這件事的最好方法。有沒有更簡單的方法來確定域名是否已註冊?
感謝Markus公開提供列表並維護它。 –