2

我正在使用 icontact api 2.0 将 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));

还检查了一些帮助,但没有找到任何解决方案 http://www.softwareprojects.com/resources/programming/t-icontact-20-api-integration-php-example-1925.html

4

1 回答 1

1

问题可能出在 addList 的第二个参数上

$oiContact->addList('test', 4424, true, false, false, 'Just an example list',"test");

4424 - 必须是您的列表之一已经存在的有效消息 ID,如果您转到 icontact 仪表板并为您的列表之一创建欢迎消息然后编辑它,您将在 url 上看到“iMessageId”范围。您可以将其用作第二个参数,它应该可以工作。

https://app.sandbox.icontact.com/icp/core/code/message/edit/?token=ff1a8748b08088d41e69215c75295c98&iMessageId=1979804&sHubId=41254750ca180a4e7b3

参考:http: //developer.icontact.com/documentation/lists/

于 2012-12-13T18:03:54.353 回答