Exemplo n.º 1
0
<?php

/**
 * example that fetches information on a dispute
 *
 * $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);
$dispute = $ebay->GetDispute('997');
echo '<pre>';
print_r($dispute->toArray());
echo '</pre>';
foreach ($dispute as $message) {
    echo '<pre>';
    print_r($message);
    echo '</pre>';
}