我正在使用icontact api 2.0來集成我網站中的icontact列表。 我面臨的問題與創建新的列表和添加新的消息使用API.But我可以創建接觸其不會產生任何名單和認購等..使用 代碼是PHP icontact API集成
require_once('lib/iContactApi.php');
// Give the API your information
iContactApi::getInstance()->setConfig(array(
'appId' => 'my_APIID',
'apiPassword' => 'my_password',
'apiUsername' => 'my_username'
));
// Store the singleton
$oiContact = iContactApi::getInstance();
$oiContact->addList('test', 4424, true, false, false, 'Just an example list',"test");
$oiContact->addMessage('An Example Message', 585, '<h1>An Example Message</h1>', 'An Example Message', 'ExampleMessage', 33765, 'normal');
// Schedule send
$oiContact->sendMessage(array(33765), 179962, null, null, null, mktime(0, 0, 0, 10, 03, 2012));
還檢查了一些幫助,但沒有發現任何soulution http://www.softwareprojects.com/resources/programming/t-icontact-20-api-integration-php-example-1925.html
其實我發現這個問題,該消息是不存在。但你是正確的。這個老問題由於任何方式.. –
只是想我會幫忙,爲目前正在研究icontact api。 API在取消訂閱後似乎無法重新訂閱用戶。 –
是的,你是正確的,你不能使用API取消訂閱時重新訂閱用戶。這可以通過棘手的方式實現。創建兩個列表一訂閱和取消訂閱,當用戶應用訂閱時,將theor id移動到訂閱列表中,否則反向。 –