DavidTanner / FuelSDK-Java

Salesforce Marketing Cloud Java SDK

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Salesforce Marketing Cloud Java SDK

The Salesforce Marketing Cloud Java SDK enables developers to easily access the Salesforce Marketing Cloud (formerly ExactTarget) via the Java platform. Among other things, the SDK:

  • automatically acquires and refreshes Marketing Cloud access tokens

  • enables developers to access both Marketing Cloud SOAP and REST APIs in the same session

  • exposes simplified versions of the most commonly used Marketing Cloud objects and methods as Java native objects

  • provides passthroughs so developers can access the full REST and SOAP APIs directly when they need to go beyond the simplified interfaces

  • adds "sugar" methods for the most commonly used Marketing Cloud features that make it easy to use those features (e.g., the SDK provides a SQL-like interface to data extensions)

For more information about the Java SDK and how to use it, please see the Javadocs at http://salesforce-marketingcloud.github.io/FuelSDK-Java/.

New Features in Version 1.2.2

  • Content Area
  • Data Extract
  • Result Message
  • Triggered Send Summary

Installation

The easiest way to install the Java SDK is via Maven—simply add the following dependency to your project's pom.xml:

<dependency>
  <groupId>com.github.salesforce-marketingcloud</groupId>
  <artifactId>fuelsdk</artifactId>
  <version>1.2.2</version>
</dependency>

Maven will automatically resolve, download, and install all dependencies for you.

You can also download a jar file from the Releases page or clone the repository and build a jar file yourself in the standard way. If you go this route, you'll need to ensure you have manually downloaded and installed all dependencies (Apache CXF, Apache Commons BeanUtils, Apache log4j 1.x, and Google Gson) to your class path.

Once you have the SDK installed, you'll need to obtain a client ID and client secret from App Center and place them in fuelsdk.properties using src/main/resources/fuelsdk.properties.template as a starting template. Theses values authenticate you to the Saleforce Marketing Cloud API.

About

Salesforce Marketing Cloud Java SDK

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Java 100.0%