Wallogit.com
2017 © Pedro Peláez
SDK to integrate the Exact Target API
ExactTarget Fuel SDK for PHP, (*1)
The Fuel SDK for PHP provides easy access to ExactTarget's Fuel API Family services, including a collection of REST APIs and a SOAP API. These APIs provide access to ExactTarget functionality via common collection types such as array/hash., (*2)
PHP Version 5.2.3, (*3)
Extensions:, (*4)
After downloading the project, rename the config.php.template file to config.php., (*5)
Edit config.php so you can input the ClientID and ClientSecret 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 ExactTarget., (*6)
See the ET_Client section below for details on how to specify these values at the time the ET_Client object is instantiated if you would prefer to store the ClientID and ClientSecret values in a database or other configuration storage mechanism., (*7)
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@: ExactTarget's Developer Community., (*8)
All ExactTarget objects exposed through the Fuel SDK begin with be prefixed with "ET_". Start by working with the ET_List object:, (*9)
Add a require statement to reference the Fuel SDK's functionality:, (*10)
require('ET_Client.php');, (*11)
Next, create an instance of the ET_Client class:, (*12)
$myclient = new ET_Client();, (*13)
Create an instance of the object type we want to work with:, (*14)
$getList = new ET_List();, (*15)
Associate the ET_Client to the object using the authStub property:, (*16)
$getList->authStub = $myclient;, (*17)
Utilize one of the ET_List methods:, (*18)
$getResponse = $getList->get();, (*19)
Print out the results for viewing, (*20)
print_r($getResponse);, (*21)
Example Output:, (*22)
ET_Get Object
(
[status] => 1
[code] => 200
[message] =>
[results] => Array
(
[0] => stdClass Object
(
[Client] => stdClass Object
(
[ID] => 1000001
[PartnerClientKey] =>
)
[PartnerKey] =>
[CreatedDate] => 2009-06-12T14:42:06.1
[ModifiedDate] => 2011-08-17T14:50:30.697
[ID] => 1718921
[ObjectID] => f41c7d1b-8957-de11-92ee-001cc494ae9e
[CustomerKey] => All Subscribers - 578623
[ListName] => All Subscribers
[Category] => 578623
[Type] => Private
[Description] => Contains all subscribers
[ListClassification] => ExactTargetList
)
)
[request_id] => 5d56a37e-4b13-4f0a-aa13-2e108e60a990
[moreResults] =>
)
The ET_Client class takes care of many of the required steps when accessing ExactTarget'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 ET_Client object for each request made., (*23)
The ET_Client class accepts multiple parameters, (*24)
Refresh WSDL - If set to true, it will automatically download a local copy of the WSDL whenever an update is found., (*25)
$myclient = new ET_Client(true);, (*26)
Debug - If set to true, all API requests that the Fuel SDK is making behind the scenes will be logged to PHP's error log. This option should only be set to true in order to troubleshoot during the development process and should never be used in a production scenario., (*27)
$myclient = new ET_Client(true,true);, (*28)
Parameters - Allows 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., (*29)
Example passing JWT:, (*30)
$myclient = new ET_Client(true, array("jwt"=>"JWT Values goes here"));, (*31)
Example passing ClientID/ClientSecret:, (*32)
$myclient = new ET_Client(true, array("clientid" => "3bjbc3mg4nbk64z5kzczf89n", "clientsecret"=>"ssnGAPvZg6kmm775KPj2Q4Cs"));, (*33)
All methods on Fuel SDK objects return a generic 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., (*34)
Get Methods also return an addition value to indicate if more information is available (that information can be retrieved using the getMoreResults method):, (*35)
Find more sample files that illustrate using all of the available functions for ExactTarget objects exposed through the API in the objsamples directory., (*36)
Sample List:, (*37)
Copyright (c) 2013 ExactTarget, (*38)
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., (*39)
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., (*40)