使用Xverify进行电子邮件验证

时间:2016-09-27 08:41:36

标签: php

我正在使用Xverify的API进行电子邮件验证

以下是我的API代码:

npm install

此处我使用的是我的xverify帐户和域名中提供的API密钥,该密钥已添加到我的xverify帐户中

但它仍然给我如下错误 有效:bool(false)

status:bad_request

require 'XverifyClientAPI.php';
$api_key = 'myapikey'; // Your API Key
$options = array();
$options['type'] = 'json'; // API response type
$options['domain'] = 'addeddomainname';// Reruired your domain name 
$client = new XverifyClientAPI($api_key,$options);

$data = array();
$data['email'] = 'test@xverify.com';
$client->verify('email',$data);
echo '<pre>';
echo "valid: ", var_dump($client->is_valid()), "\n";
echo "status: ", $client->status(), "\n";
print_r($client->getReponseAsObject());// Convert the json response into object

我没有得到这个问题,任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

确保在我只使用xverify.com之前,必须使用正确的URL来调用api,在我的情况下,我必须使用域名us.xverify.com才能使其正常工作,这总是使我得到结果与您的(达到api限制)相同,要检查正确的api调用,请登录到您的xverify帐户,然后单击设置并选择电子邮件,然后滚动到页面底部并检查正确的url。如果ID是在美国创建的,我想您必须使用us.xverify.com