0

我正在尝试使用 iContact 的 PHP Api 来存储联系人。我已经注册了账号,我使用的是 iContact 提供的来自GitHub的 iContactApi.php。

我的源代码看起来像这样L

// Load the iContact library
require_once('ws/iContactApi.php');

// Give the API your information
iContactApi::getInstance()->setConfig(array(
    'appId'       => 'myappID', 
    'apiPassword' => 'myuser', 
    'apiUsername' => 'mypass'
));

// Store the singleton
$oiContact = iContactApi::getInstance();
// Try to make the call(s)
//try {
    //  are examples on how to call the  iContact PHP API class

    // Create a contact
    var_dump($oiContact->addContact('joe@shmoe.com', null, null, 'Joe', 'Shmoe', null, '123 Somewhere Ln', 'Apt 12', 'Somewhere', 'NW', '12345', '123-456-7890', '123-456-7890', null));

//}

我收到以下错误:

致命错误:未捕获的异常“异常”,消息“发生错误,系统无法继续”。使用 getErrors() 获取详细信息。在 C:\xampp\htdocs\clydebutcher\ws\iContactApi.php:482 堆栈跟踪:#0 C:\xampp\htdocs\clydebutcher\ws\iContactApi.php(1096): iContactApi->makeCall('/a/' , 'get', NULL, 'accounts') #1 C:\xampp\htdocs\clydebutcher\ws\iContactApi.php(212): iContactApi->setAccountId() #2 C:\xampp\htdocs\clydebutcher\mdl- newsletter-save.php(130): iContactApi->addContact('joe@shmoe.com', NULL, NULL, 'Joe', 'Shmoe', NULL, '123 Somewhere L...', 'Apt 12', '某处', 'NW', '12345', '123-456-7890', '123-456-7890', NULL) #3 C:\xampp\htdocs\clydebutcher\mdl.php(14): include( 'C:

我做错了什么吗?

4

1 回答 1

1

您想使用 iContact API 中的 getError() 方法来了解有关所发生情况的更多信息。

  try {
    // Give the API your information.
    iContactApi::getInstance()->setConfig(array(
      'appId'       => 'myid',
      'apiPassword' => 'mypassword',
      'apiUsername' => 'mysecret',
    ));

    // Store the singleton
    $oiContact = iContactApi::getInstance();


    // Create a contact
    var_dump($oiContact->addContact('joe@shmoe.com', null, null, 'Joe', 'Shmoe', null, '123 Somewhere Ln', 'Apt 12', 'Somewhere', 'NW', '12345', '123-456-7890', '123-456-7890', null));

  }
  catch (Exception $e) {
    print_r($oiContact->getErrors();
  }
于 2015-05-26T23:56:37.113 回答