Subversion-Projekte lars-tiefland.php_share

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?PHP
/**
 * example that fetches an item
 *
 * $Id: example_GetPromotionRules.php,v 1.1 2004/12/31 18:07:57 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);

$rules = $ebay->GetPromotionRules('UpSell', '4502066038');

echo '<pre>';
print_r($rules);
echo '</pre>';
?>