Sophie

Sophie

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

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

<?PHP
/**
 * example that fetches the current eBay time
 *
 * $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);

echo $ebay->GeteBayOfficialTime();
?>