2013-07-11 95 views
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?

回答

1

最後我找到了解決這個問題的辦法。

另外我發現了另外2種使用php的iContact API的方法。如果任何一個人遇到同樣的問題,或者某人會在iContact api上工作,它會幫助他們,請點擊here查看詳細信息。

+0

哇 - 謝謝你找到這個和分享。 – Ewen

相關問題