Server IP : 127.0.0.2 / Your IP : 3.129.209.49 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/vendor/constantcontact/constantcontact/examples/ |
Upload File : |
<!DOCTYPE HTML> <html> <head> <title>Constant Contact API v2 Add/Update Contact Example</title> <link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css" rel="stylesheet"> <link href="styles.css" rel="stylesheet"> </head> <!-- README: Add or update contact example This example flow illustrates how a Constant Contact account owner can add or update a contact in their account. In order for this example to function properly, you must have a valid Constant Contact API Key as well as an access token. Both of these can be obtained from http://constantcontact.mashery.com. --> <?php // require the autoloaders require_once '../src/Ctct/autoload.php'; require_once '../vendor/autoload.php'; use Ctct\ConstantContact; use Ctct\Components\Contacts\Contact; use Ctct\Exceptions\CtctException; // Enter your Constant Contact APIKEY and ACCESS_TOKEN define("APIKEY", "ENTER YOUR API KEY"); define("ACCESS_TOKEN", "ENTER YOUR ACCESS TOKEN"); $cc = new ConstantContact(APIKEY); // attempt to fetch lists in the account, catching any exceptions and printing the errors to screen try { $lists = $cc->listService->getLists(ACCESS_TOKEN); } catch (CtctException $ex) { foreach ($ex->getErrors() as $error) { print_r($error); } if (!isset($lists)) { $lists = null; } } // check if the form was submitted if (isset($_POST['email']) && strlen($_POST['email']) > 1) { $action = "Getting Contact By Email Address"; try { // check to see if a contact with the email address already exists in the account $response = $cc->contactService->getContacts(ACCESS_TOKEN, array("email" => $_POST['email'])); // create a new contact if one does not exist if (empty($response->results)) { $action = "Creating Contact"; $contact = new Contact(); $contact->addEmail($_POST['email']); $contact->addList($_POST['list']); $contact->first_name = $_POST['first_name']; $contact->last_name = $_POST['last_name']; /* * The third parameter of addContact defaults to false, but if this were set to true it would tell Constant * Contact that this action is being performed by the contact themselves, and gives the ability to * opt contacts back in and trigger Welcome/Change-of-interest emails. * * See: http://developer.constantcontact.com/docs/contacts-api/contacts-index.html#opt_in */ $returnContact = $cc->contactService->addContact(ACCESS_TOKEN, $contact); // update the existing contact if address already existed } else { $action = "Updating Contact"; $contact = $response->results[0]; if ($contact instanceof Contact) { $contact->addList($_POST['list']); $contact->first_name = $_POST['first_name']; $contact->last_name = $_POST['last_name']; /* * The third parameter of updateContact defaults to false, but if this were set to true it would tell * Constant Contact that this action is being performed by the contact themselves, and gives the ability to * opt contacts back in and trigger Welcome/Change-of-interest emails. * * See: http://developer.constantcontact.com/docs/contacts-api/contacts-index.html#opt_in */ $returnContact = $cc->contactService->updateContact(ACCESS_TOKEN, $contact); } else { $e = new CtctException(); $e->setErrors(array("type", "Contact type not returned")); throw $e; } } // catch any exceptions thrown during the process and print the errors to screen } catch (CtctException $ex) { echo '<span class="label label-important">Error ' . $action . '</span>'; echo '<div class="container alert-error"><pre class="failure-pre">'; print_r($ex->getErrors()); echo '</pre></div>'; die(); } } ?> <body> <div class="well"> <h3>Add or Update a Contact</h3> <form class="form-horizontal" name="submitContact" id="submitContact" method="POST" action="addOrUpdateContact.php"> <div class="control-group"> <label class="control-label" for="email">Email</label> <div class="controls"> <input type="email" id="email" name="email" placeholder="Email Address"> </div> </div> <div class="control-group"> <label class="control-label" for="first_name">First Name</label> <div class="controls"> <input type="text" id="first_name" name="first_name" placeholder="First Name"> </div> </div> <div class="control-group"> <label class="control-label" for="last_name">Last Name</label> <div class="controls"> <input type="text" id="last_name" name="last_name" placeholder="Last Name"> </div> </div> <div class="control-group"> <label class="control-label" for="list">List</label> <div class="controls"> <select name="list"> <?php foreach ($lists as $list) { echo '<option value="' . $list->id . '">' . $list->name . '</option>'; } ?> </select> </div> </div> <div class="control-group"> <label class="control-label"> <div class="controls"> <input type="submit" value="Submit" class="btn btn-primary"/> </div> </div> </form> </div> <!-- Success Message --> <?php if (isset($returnContact)) { echo '<div class="container alert-success"><pre class="success-pre">'; print_r($returnContact); echo '</pre></div>'; } ?> </body> </html>