hyptechdev2015 / FuelSDK-CSharp

FuelSDK-CSharp

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FuelSDK-CSharp

Salesforce Marketing Cloud Fuel SDK for C#

Overview

The Fuel SDK for C# provides easy access to Salesforce Marketing Cloud's Fuel API Family services, including a collection of REST APIs and a SOAP API. These APIs provide access to Salesforce Marketing Cloud functionality via common collection types.

Latest Version 1.1.1

  • Bug fixes

New Features in Version 1.1.0

  • Added support for your tenant's endpoints - More Details : The user of the SDK can now configure them through a App.config file OR using the “parametersETClient constructor parameter as in the previous version of the SDK. The user of the SDK has to make a copy of the App.config.transform file which is found in the FuelSDK-CSharp folder, place it in the same folder and rename it to App.config. The structure of this file will be the following:
 
<configuration>
  <configSections>
    <section name="fuelSDK" type="FuelSDK.FuelSDKConfigurationSection, FuelSDK" />
  </configSections>
  <fuelSDK 
    appSignature="<appSignature>" 
    clientId="<clientId>" 
    clientSecret="<clientSecret>" 
    authEndPoint="<authenticationEndPoint>" 
    soapEndPoint="<soapEndPoint>" 
    restEndPoint="<restEndPoint>" />
</configuration>

New Features in Version 1.0.0

  • code refactor : code refactored to individual class files. Classes starting with “ET_” are deprecated now and all SDK API objects start with “ET”.

Project tree structure

  • FuelSDK-CSharp : SDK Project
  • FuelSDK.Test : NUnit test project
  • objsamples : Sample/Example project
  • docs : SDK API HTML documentation
  • NUnit test case : Nunit test case project added. This covers basic happy path testing. All the test cases use “ET” classes. For samples that uses “ET_” classes, please see “objsamples” project. Advanced and more comprehensive test cases will be added in future releases.

  • API docs : added API documentation using doxygen documentation framework. (under docs/ directory)

  • JWT : JWT.cs is removed from the project and added as dependency.

Not specifying the appSignature field in the App.config file will throw an error if you try to instantiate the ETClient class using a jwt.

Not specifying the authEndPoint, soapEndPoint and the restEndPoint in the App.config file will make the SDK use the default values of these fields that are provided in the FuelSDKConfigurationSection class.

Not specifying the clientId and the clientSecret fields in the App.config file will throw an error if you try to instantiate the ETClient class.

Requirements

  • .NET Studio 2013 or higher (WCF)
  • .NET Framework 4

Dependencies: JWT v3.0.0 Newtonsoft.Json v10.0.3

Installation

Add Salesforce Marketing Cloud Fuel SDK nuget package using the following command in the package manager console:

 Install-Package SFMC.FuelSDK 

All necessary settings are in App.config.transform file.

Getting Started

The FuelSDK-CSharp solution file includes two projects. One for the actual SDK and one for a web based testing app as an example of how to use the SDK dll and other dependent files.

Rename the App.config.transform file in the objsamples project to App.config, then edit so you can input the ClientID and Client Secret values provided when you registered your application. If you are building a HubExchange application for the Interactive Marketing Hub then, you must also provide the Application Signature (appsignature). Only change the value for the defaultwsdl configuration item if instructed by Salesforce Marketing Cloud.

If you have not registered your application or you need to lookup your Application Key or Application Signature values, please go to App Center at Code@: Salesforce Marketing Cloud's Developer Community.

Example Request

All Salesforce Marketing Cloud services exposed through the Fuel SDK begin with be prefixed with "ET". Start by working with the ETList object:

Add a using statement to reference the FuelSDK's functionality:

>using FuelSDK;

Next, create an instance of the ETClient class:

>ETClient myclient = new ETClient();            

Create an instance of the Salesforce Marketing Cloud we want to work with:

>ETList list = new ETList();

Associate the ETClient to the object using the client property:

>list.authStub = myclient;

Utilize one of the ETList methods:

>GetReturn getFR = list.Get();


Print out the results for viewing


>Console.WriteLine("Get Status: " + getFR.Status.ToString());
>
>Console.WriteLine("Message: " + getFR.Message.ToString());
>
>Console.WriteLine("Code: " + getFR.Code.ToString());
>
>Console.WriteLine("Results Length: " + getFR.Results.Length);

>foreach (ETList ResultList in getFR.Results) 
>{
>   Console.WriteLine("--ID: " + ResultList.ID + ", Name: " + ResultList.ListName + ", Description: " + ResultList.Description); >
>}

ETClient Class

The ETClient class takes care of many of the required steps when accessing Salesforce Marketing Cloud's API, including retrieving appropriate access tokens, handling token state for managing refresh, and determining the appropriate endpoints for API requests. In order to leverage the advantages this class provides, use a single instance of this class for an entire session. Do not instantiate a new ETClient object for each request made.

The ETClient class takes 1 parameter which is a NameValueCollection that can be used for passing authentication information for use with SSO with a JWT or for passing ClientID/ClientSecret if you would prefer to not use the config file option.

Example passing JWT:

NameValueCollection parameters = new NameValueCollection();
parameters.Add("clientId", "");
parameters.Add("clientSecret", "");
parameters.Add("jwt", "JWT Value Goes Here");
parameters.Add("appSignature", "j8hj87jhf54gfk54d2lijs");
ETClient myclient = new ETClient(parameters);

Example passing ClientID/ClientSecret only:

NameValueCollection parameters = new NameValueCollection();
parameters.Add("clientId", "");
parameters.Add("clientSecret", "");
ETClient myclient = new ETClient(parameters);

Example passing flag for sandbox environment with ClientID/ClientSecret:

NameValueCollection parameters = new NameValueCollection();
parameters.Add("clientId", "");
parameters.Add("clientSecret", "");
parameters.Add("sandbox", "true");
ETClient myclient = new ETClient(parameters);

Responses

All methods on Fuel SDK objects return an object that follows the same structure, regardless of the type of call. This object contains a common set of properties used to display details about the request.

  • Status: Boolean value that indicates if the call was successful
  • Code: HTTP Error Code
  • Message: Text values containing more details in the event of an error
  • Results: Typed collection containing the results of the call.

Get Methods also return an addition value to indicate if more information is available (that information can be retrieved using the GetMoreResults method):

  • MoreResults: Boolean value that indicates on Get requests if more data is available.

Samples

The objsamples project (included in solution) contains sample calls for all the available functionality.

Copyright and license

Copyright (c) 2018 Salesforce Marketing Cloud

Licensed under the MIT License (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the COPYING file.

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

FuelSDK-CSharp

License:MIT License


Languages

Language:C# 100.0%Language:Batchfile 0.0%