Skip to content

sandeepSJS/ebay-sdk-trading

 
 

Repository files navigation

EBAY-SDK-TRADING

Build Status

This is an old version of the SDK.

This repository is now deprecated and will reach its end of life on the 6th December 2015. It is only maintained for bug fixes. A new version of the SDK has been released and is available at https://github.com/davidtsadler/ebay-sdk-php. A guide can be found at http://devbay.net/sdk/guides/migration/ to help migrate existing projects to the new repository.

This project enables PHP developers to use the eBay API in their PHP code, and build software using the Trading service. You can get started by installing the SDK via Composer and by following the Getting Started Guide.

Features

Resources

  • User Guides - Getting started guide and in-depth information.
  • SDK Versions - A complete list of each SDK, and the API version they support.
  • Sample Project - Provides several examples of using the SDK.
  • Google Group - Join for support with the SDK.
  • @devbaydotnet - Follow on Twitter for announcements of releases, important changes and so on.

Requirements

  • PHP 5.3.3 or greater with the following extensions:
    • cURL
    • libxml
  • 64 bit version of PHP recommended as there are some issues when using the SDK with 32 bit.
  • SSL enabled on the cURL extension so that https requests can be made.

Installation

The SDK can be installed with Composer. Please see the Installation section of the User Guide to learn about installing through other means.

  1. Install Composer.

    curl -sS https://getcomposer.org/installer | php
    
  2. Install the SDK.

    php composer.phar require dts/ebay-sdk-trading
    
  3. Require Composer's autoloader by adding the following line to your code.

    require 'vendor/autoload.php';

Example

Get the official eBay time

<?php

require 'vendor/autoload.php';

use \DTS\eBaySDK\Constants;
use \DTS\eBaySDK\Trading\Services;
use \DTS\eBaySDK\Trading\Types;

// Create the service object.
$service = new Services\TradingService(array(
    'apiVersion' => '863',
    'siteId' => Constants\SiteIds::US
));

// Create the request object.
$request = new Types\GeteBayOfficialTimeRequestType();

$request->RequesterCredentials = new Types\CustomSecurityHeaderType();
$request->RequesterCredentials->eBayAuthToken = 'YOUR_PRODUCTION_USER_TOKEN_APPLICATION_KEY';

// Send the request to the service operation.
$response = $service->geteBayOfficialTime($request);

// Output the result of calling the service operation.
printf("The official eBay time is: %s\n", $response->Timestamp->format('H:i (\G\M\T) \o\n l jS Y'));

Project Goals

Project Maturity

This is a personal project that has been developed by me, David T. Sadler. I decided to create this project to make up for the lack of an official SDK for PHP. It is in no way endorsed, sponsored or maintained by eBay.

As this is a brand new project you should expect frequent releases until it reaches the stable 1.0.0 target. I will endeavour to keep changes to a minimum between each release and any changes will be documented.

License

Licensed under the Apache Public License 2.0.

Copyright 2014 David T. Sadler

About

This repository's EOL is the 6th December 2015.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%