<?php

/**
 * example that fetches information about a site
 *
 * $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);
$details = $ebay->GeteBayDetails('CountryDetails');
echo '<pre>';
print_r($details);
echo '</pre>';
// get the shipping services for Germany
$session->setSiteId(\Services\Ebay::SITEID_DE);
$details = $ebay->GeteBayDetails('CurrencyDetails');
echo '<pre>';
print_r($details);
echo '</pre>';