我阅读了整个API,但仍然遇到了身份验证问题
$url = "api.domainapi.com/v1/availability/example.com";
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($ch, CURLOPT_USERPWD, 'login:password');
curl_exec($ch);
错误:
HTTP Status 401 -
type Status report
message
description This request requires HTTP authentication ().
任何人都可以向我解释如何成功验证(我收到验证错误)?
答案 0 :(得分:0)
您的问题是询问是否要连接到API但未引用真正的API。
由于该网站未提供有关身份验证的任何有用信息,您应与他们联系http://domainapi.com/contact.html
如果您必须联系各个提供商以获取凭据,或者domainapi提供这些凭据,他们应该明确说明。