我在集成 iContact API 2.2 时遇到了一个问题问题是我无法使用电子邮件搜索联系人详细信息。结果是 null 什么都没有返回。
我所做的是:
$res = $oiContact->getContactWithEmail("myemail@gmail.com");//not working
echo "<pre/>";
print_r($res);
在 API 库中:
public function getContactWithEmail($Email) {
// Make the call and return the data
$this->aSearchParameters['status'] = 'total';
$this->aSearchParameters['email'] = $Email;
//$this->aSearchParameters['mytermSearchType'] = 'eq';
return $this->makeCall("/a/{$this->setAccountId()}/c/{$this->setClientFolderId()}/contacts", 'GET', null, 'contact');
}
当我尝试使用联系人 ID 进行搜索时,我得到了联系人的完整详细信息,但电子邮件无法正常工作?
这个 icontact API.2.2 是不可能的吗
但我在 C# .NET 中发现了类似的东西
php 有什么解决方案吗?