0
集成iContact API時遇到問題2.2 問題是我無法使用電子郵件搜索聯繫人詳細信息。 結果爲空無返回。iContact在API2.2中使用電子郵件搜索
我所做的是:
$res = $oiContact->getContactWithEmail("[email protected]");//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("https://stackoverflow.com/a/{$this->setAccountId()}/c/{$this->setClientFolderId()}/contacts", 'GET', null, 'contact');
}
當我試着使用接觸式ID來搜索我的聯繫人的全部細節,但電子郵件不工作怎麼樣?
是不可能的,這IContact接口API.2.2
但是我發現在C#.NET類似here
任何解決方案適用於PHP?
哇 - 謝謝你找到這個和分享。 – Ewen