我正在测试 Fullcontact API 以检索有关特定人员的信息。如果我正在使用他们的 API 查找的人在他们的数据库中不存在,它将返回 404 Not found 错误。我试图通过检索其他用户名来解决这个问题,但它不起作用。这是代码:
person = FullContact.person(email: 'wilson@wilsontest.com')
if person.to_i > 400
person = FullContact.person(email: 'wilsonp@gmail.com')
else
person = FullContact.person(email: 'wilson@wilsontest.com')
end
p person
当未找到电子邮件时,这仍会显示 404 Not found。