Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 33d09468bb238c2e5fa59d38cfd7db7d > files > 30

php-pear-Services_Ebay-0.13.1-3.mga4.noarch.rpm

<?PHP
/**
 * example that fetches domains
 *
 * This is supposed to produce an exception
 * as your application probably is not allowed to make
 * this call.
 *
 * $Id$
 *
 * @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);

$domains = $ebay->GetDomains();
echo '<pre>';
print_r($domains);
echo '</pre>';
?>