PHP code example of meniam / ebay-api-client

1. Go to this page and download the library: Download meniam/ebay-api-client library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

meniam / ebay-api-client example snippets


$client = new \Catalol\Client(new \Buzz\Browser(), 'catalol.test', 'af783c9323de');
$product = $client->getEbayProduct(360871121943);

$product->getName();
$product->getSeller();
$product->getPrice();