2017 © Pedro Peláez
 

library laravel-ebay

This package is wrapper for php Ebay sdk for laravel to automate all the configurations and make the skd ready to use.

image

hkonnet/laravel-ebay

This package is wrapper for php Ebay sdk for laravel to automate all the configurations and make the skd ready to use.

  • Thursday, June 21, 2018
  • by hkonnet
  • Repository
  • 1 Watchers
  • 11 Stars
  • 3,598 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 8 Forks
  • 1 Open issues
  • 8 Versions
  • 23 % Grown

The README.md

Laravel Ebay

Latest Stable Version Total Downloads Monthly Downloads License, (*1)

This package is based on Ebay SDK written by David T. Sadler. This package will organize all the configuration according to laravel and make you use the SDK with out doing any exceptional work or configurations., (*2)

Getting Started

Follow the instruction to install and use this package., (*3)

Prerequisites

This is package use Ebay Php SDK, (*4)

Installing

Add Laravel-Ebay to your composer file via the composer require command:, (*5)

$ composer require hkonnet/laravel-ebay

Or add it to composer.json manually:, (*6)

"require": {
    "hkonnet/laravel-ebay": "^1.2"
}

Register the service provider by adding it to the providers key in config/app.php. Also register the facade by adding it to the aliases key in config/app.php., (*7)

Laravel 5.1 or greater, (*8)

'providers' => [
    ...
    Hkonnet\LaravelEbay\EbayServiceProvider::class, 
],

'aliases' => [
    ...
    'Ebay' => Hkonnet\LaravelEbay\Facade\Ebay::class,
]

Laravel 5, (*9)

'providers' => [
    ...
    'Hkonnet\LaravelEbay\EbayServiceProvider', 
],

'aliases' => [
    ...
    'Ebay' => 'Hkonnet\LaravelEbay\Facade\Ebay',
]

Next to get started, you'll need to publish all vendor assets:, (*10)

$ php artisan vendor:publish --provider="Hkonnet\LaravelEbay\EbayServiceProvider"

This will create a config/ebay.php file in your app that you can modify to set your configuration., (*11)

Configuration

After installation, you will need to add your ebay settings. Following is the code you will find in config/ebay.php, which you should update accordingly., (*12)

return [
    'mode' => env('EBAY_MODE', 'sandbox'),

    'siteId' => env('EBAY_SITE_ID','0'),

    'sandbox' => [
        'credentials' => [
            'devId' => env('EBAY_SANDBOX_DEV_ID'),
            'appId' => env('EBAY_SANDBOX_APP_ID'),
            'certId' => env('EBAY_SANDBOX_CERT_ID'),
        ],
        'authToken' => env('EBAY_SANDBOX_AUTH_TOKEN'),
        'oauthUserToken' => env('EBAY_SANDBOX_OAUTH_USER_TOKEN'),
    ],
    'production' => [
        'credentials' => [
            'devId' => env('EBAY_PROD_DEV_ID'),
            'appId' => env('EBAY_PROD_APP_ID'),
            'certId' => env('EBAY_PROD_CERT_ID'),
        ],
        'authToken' => env('EBAY_PROD_AUTH_TOKEN'),
        'oauthUserToken' => env('EBAY_PROD_OAUTH_USER_TOKEN'),
    ]
];

Usage

Following are few examples for using this package., (*13)

Ex 1: Get the official eBay time

Following are the two ways you can do it, (*14)

Method 1:, (*15)

use \Hkonnet\LaravelEbay\EbayServices;
use \DTS\eBaySDK\Shopping\Types;

// Create the service object.
$ebay_service = new EbayServices();
$service = $ebay_service->createShopping();

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

// Send the request to the service operation.
$response = $service->geteBayTime($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'));

Method 2:, (*16)

Tip: If you prefer to use DTS library class you need to pass the configuration., (*17)

use \DTS\eBaySDK\Shopping\Services;
use \DTS\eBaySDK\Shopping\Types;

$config = Ebay::getConfig();

// Create the service object.
$service = new Services\ShoppingService($config);

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

// Send the request to the service operation.
$response = $service->geteBayTime($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'));

Ex 2: Find items by keyword

This example will call the findItemsByKeywords operation, (*18)

Method 1:, (*19)

use \Hkonnet\LaravelEbay\EbayServices;
use \DTS\eBaySDK\Finding\Types;

// Create the service object.
    $ebay_service = new EbayServices();
    $service = $ebay_service->createFinding();

// Assign the keywords.
    $request = new Types\FindItemsByKeywordsRequest();
    $request->keywords = 'Harry Potter';

// Ask for the first 25 items.
    $request->paginationInput = new Types\PaginationInput();
    $request->paginationInput->entriesPerPage = 25;
    $request->paginationInput->pageNumber = 1;

// Ask for the results to be sorted from high to low price.
    $request->sortOrder = 'CurrentPriceHighest';

    $response = $service->findItemsByKeywords($request);

    // Output the response from the API.
    if ($response->ack !== 'Success') {
        foreach ($response->errorMessage->error as $error) {
            printf("Error: %s <br>", $error->message);
        }
    } else {
        foreach ($response->searchResult->item as $item) {
            printf("(%s) %s:%.2f <br>", $item->itemId, $item->title, $item->sellingStatus->currentPrice->value);
        }
    }

Method 2:, (*20)

use DTS\eBaySDK\Finding\Services\FindingService;
use \DTS\eBaySDK\Finding\Types;

// Create the service object.
    $config = Ebay::getConfig();
    $service = new FindingService($config);

// Assign the keywords.
    $request = new Types\FindItemsByKeywordsRequest();
    $request->keywords = 'Harry Potter';

// Ask for the first 25 items.
    $request->paginationInput = new Types\PaginationInput();
    $request->paginationInput->entriesPerPage = 25;
    $request->paginationInput->pageNumber = 1;

// Ask for the results to be sorted from high to low price.
    $request->sortOrder = 'CurrentPriceHighest';

    $response = $service->findItemsByKeywords($request);

    // Output the response from the API.
    if ($response->ack !== 'Success') {
        foreach ($response->errorMessage->error as $error) {
            printf("Error: %s <br>", $error->message);
        }
    } else {
        foreach ($response->searchResult->item as $item) {
            printf("(%s) %s:%.2f <br>", $item->itemId, $item->title, $item->sellingStatus->currentPrice->value);
        }
    }

Ex 3. Get my ebay selling

use \DTS\eBaySDK\Constants;
use \DTS\eBaySDK\Trading\Types;
use \DTS\eBaySDK\Trading\Enums;
use \Hkonnet\LaravelEbay\EbayServices;

/**
 * Create the service object.
 */
$ebay_service = new EbayServices();
$service = $ebay_service->createTrading();

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

/**
 * An user token is required when using the Trading service.
 */
$request->RequesterCredentials = new Types\CustomSecurityHeaderType();
$authToken = Ebay::getAuthToken();
$request->RequesterCredentials->eBayAuthToken = $authToken;

/**
 * Request that eBay returns the list of actively selling items.
 * We want 10 items per page and they should be sorted in descending order by the current price.
 */
$request->ActiveList = new Types\ItemListCustomizationType();
$request->ActiveList->Include = true;
$request->ActiveList->Pagination = new Types\PaginationType();
$request->ActiveList->Pagination->EntriesPerPage = 10;
$request->ActiveList->Sort = Enums\ItemSortTypeCodeType::C_CURRENT_PRICE_DESCENDING;
$pageNum = 1;

do {
    $request->ActiveList->Pagination->PageNumber = $pageNum;

    /**
     * Send the request.
     */
    $response = $service->getMyeBaySelling($request);

    /**
     * Output the result of calling the service operation.
     */
    echo "==================\nResults for page $pageNum\n==================\n";
    if (isset($response->Errors)) {
        foreach ($response->Errors as $error) {
            printf(
                "%s: %s\n%s\n\n",
                $error->SeverityCode === Enums\SeverityCodeType::C_ERROR ? 'Error' : 'Warning',
                $error->ShortMessage,
                $error->LongMessage
            );
        }
    }
    if ($response->Ack !== 'Failure' && isset($response->ActiveList)) {
        foreach ($response->ActiveList->ItemArray->Item as $item) {
            printf(
                "(%s) %s: %s %.2f\n",
                $item->ItemID,
                $item->Title,
                $item->SellingStatus->CurrentPrice->currencyID,
                $item->SellingStatus->CurrentPrice->value
            );
        }
    }
    $pageNum += 1;
} while (isset($response->ActiveList) && $pageNum <= $response->ActiveList->PaginationResult->TotalNumberOfPages);

Note: - There are lots for more example available at Ebay SDK Examples. - Follow above examples but read the Important note below., (*21)

Important Note

Using method 1 in both examples we did, (*22)

use \Hkonnet\LaravelEbay\EbayServices;
// Create the service object.
$ebay_service = new EbayServices();
$service = $ebay_service->createFinding();

to get service object.., (*23)

Following methods are available to create services using EbayServices class., (*24)

  • createAccount(array $args = [])
  • createAnalytics(array $args = [])
  • createBrowse(array $args = [])
  • createBulkDataExchange(array $args = [])
  • createBusinessPoliciesManagement(array $args = [])
  • createFeedback(array $args = [])
  • createFileTransfer(array $args = [])
  • createFinding(array $args = [])
  • createFulfillment(array $args = [])
  • createHalfFinding(array $args = [])
  • createInventory(array $args = [])
  • createMarketing(array $args = [])
  • createMerchandising(array $args = [])
  • createMetadata(array $args = [])
  • createOrder(array $args = [])
  • createPostOrder(array $args = [])
  • createProduct(array $args = [])
  • createProductMetadata(array $args = [])
  • createRelatedItemsManagement(array $args = [])
  • createResolutionCaseManagement(array $args = [])
  • createReturnManagement(array $args = [])
  • createShopping(array $args = [])
  • createTrading(array $args = [])

These services methods can be used to get appropriate service object to perform operations on Ebay., (*25)

Author

  • Haroon Khan - Initial work - hkonnet

License

This project is licensed under the MIT License - see the LICENSE file for details, (*26)

Acknowledgments

The Versions

21/06 2018

dev-master

9999999-dev

This package is wrapper for php Ebay sdk for laravel to automate all the configurations and make the skd ready to use.

  Sources   Download

MIT

The Requires

 

by Haroon Khan

laravel api php sdk laravel5 ebay

05/04 2018

1.2

1.2.0.0

This package is wrapper for php Ebay sdk for laravel to automate all the configurations and make the skd ready to use.

  Sources   Download

MIT

The Requires

 

by Haroon Khan

laravel api php sdk laravel5 ebay

28/11 2017

1.1

1.1.0.0

This package is wrapper for php Ebay sdk for laravel to automate all the configurations and make the skd ready to use.

  Sources   Download

MIT

The Requires

 

by Haroon Khan

laravel api php sdk laravel5 ebay

13/07 2017

0.1.2

0.1.2.0

This package is wrapper for php Ebay sdk for laravel to automate all the configurations and make the skd ready to use.

  Sources   Download

MIT

The Requires

 

by Haroon Khan

laravel api php sdk laravel5 ebay

13/07 2017

1.0.0

1.0.0.0

This package is wrapper for php Ebay sdk for laravel to automate all the configurations and make the skd ready to use.

  Sources   Download

MIT

The Requires

 

by Haroon Khan

laravel api php sdk laravel5 ebay

05/06 2017

0.1.1

0.1.1.0

This package is wrapper for php Ebay sdk for laravel to automate all the configurations and make the skd ready to use.

  Sources   Download

MIT

The Requires

 

by Haroon Khan

laravel api php sdk laravel5 ebay

05/06 2017

0.1.0

0.1.0.0

This package is wrapper for php Ebay sdk for laravel to automate all the configurations and make the skd ready to use.

  Sources   Download

MIT

The Requires

 

by Haroon Khan

laravel api php sdk laravel5 ebay

01/06 2017

1.0-beta

1.0.0.0-beta

This package is wrapper for php Ebay sdk for laravel to automate all the configurations and make the skd ready to use.

  Sources   Download

MIT

The Requires

 

by Haroon Khan

laravel api php sdk laravel5 ebay