Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

com.constantcontact:constantcontact

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

com.constantcontact:constantcontact

Constant Contact Java SDK

  • 4.4.0
  • Source
  • Maven
  • Socket score

Version published
Maintainers
1
Source

Constant Contact JAVA SDK

Build Status

Installation

In order to use the Constant Contact SDK please follow these steps:

  1. This project builds with Apache Maven. Running maven clean install will build and test the source and install its artifacts and dependencies into your maven repository. At this point, you can add the Constant Contact SDK as a dependency to other projects. If you do not wish to build with Maven, consult the pom.xml file to examine the dependencies the Constant Contact SDK has. For example, it requires Jackson for JSON processing.

Maven

<dependency>
  <groupId>com.constantcontact</groupId>
  <artifactId>constantcontact</artifactId>
  <version>4.2.0</version>
</dependency>

Documentation

The Javadoc is hosted at http://constantcontact.github.io/java-sdk

API Documentation is located at http://developer.constantcontact.com/docs/developer-guides/api-documentation-index.html

Usage

  1. In the file you wish to use the SDK include the following code:

import com.constantcontact.ConstantContact;

  1. Create a ConstantContact object

ConstantContact constantContact = new ConstantContact("<apiKey>", "<accessToken>");

The API key represents the Application Key provided by Constant Contact for a specific application. The access token is obtained by performing the Constant Contact Authentication process.

  1. Begin using the SDK functionality using the ConstantContact object.

######Example for getting an contact

Contact contact = constantContact.getContact(int contactId);

######Example for getting contact list

ResultSet<Contact> contactList = constantContact.getContacts();

FAQs

Package last updated on 09 Sep 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc