Subversion-Projekte lars-tiefland.php_share

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?PHP
/**
 * example that fetches the URL of the eBay logo
 * in three sizes.
 *
 * This call returns an array with the URL, width and height
 *
 * $Id: example_features_setErrorLanguage.php,v 1.1 2004/12/01 19:50:23 schst Exp $
 *
 * @package     Services_Ebay
 * @subpackage  Examples
 * @author      Stephan Schmidt
 */
error_reporting(E_ALL);
require_once '../Ebay.php';
require_once 'config.php';

$session = Services_Ebay::getSession($devId, $appId, $certId);

$session->setToken($token);

$ebay = new Services_Ebay($session);

// get errors in German
$session->setErrorLanguage(Services_Ebay::SITEID_DE);

try {
    $logo = $ebay->GetLogoURL('Foo');
} catch (Exception $e) {
    echo $e->getMessage();
}
?>