Ejemplo n.º 1
0
<?php

/**
 * example that display information in My eBay
 *
 * $Id$
 *
 * @package     Services_Ebay
 * @subpackage  Examples
 * @author      Stephan Schmidt
 */
error_reporting(E_ALL);
require_once '../vendor/autoload.php';
require_once 'config.php';
$session = \Services\Ebay::getSession($devId, $appId, $certId);
$session->setToken($token);
$ebay = new \Services\Ebay($session);
$MyeBay = $ebay->GetMyeBay();
foreach ($MyeBay as $listname => $list) {
    echo '<b>' . $listname . '</b><br />';
    foreach ($list as $item) {
        echo $item;
        echo '<br />';
    }
}