フォームが送信され、Constant Contact v2 API を使用する addOrUpdateContact サンプル コードを開始したときに、Constant Contact リストに連絡先を自動的に追加しようとしています。フォームを送信すると、次のエラーが表示されます。
Catchable fatal error: Argument 3 passed to Ctct\Services\ContactService::addContact() must be of the type array, boolean given, called in /home/cspacetribeca/public_html/mh/test.php on line 65 and defined in /home/cspacetribeca/public_html/mh/vendor/constantcontact/constantcontact/src/Ctct/Services/ContactService.php on line 131
参照されている行は次のとおりです。
$returnContact = $cc->contactService->addContact(ACCESS_TOKEN, $contact, true);
また、131 行目の ContactService.php では、配列を要求しています。
public function addContact($accessToken, Contact $contact, Array $params = array())
これを修正するにはどうすればよいですか?
ありがとう - ジョー