Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?PHP
2
/**
3
 * example that shows how to load an API call
4
 * and use it without the wrapper.
5
 *
6
 * $Id: example_features_UsingObjects.php,v 1.1 2004/11/30 20:03:48 schst Exp $
7
 *
8
 * @package     Services_Ebay
9
 * @subpackage  Examples
10
 * @author      Stephan Schmidt
11
 */
12
error_reporting(E_ALL);
13
require_once '../Ebay.php';
14
require_once 'config.php';
15
 
16
$session = Services_Ebay::getSession($devId, $appId, $certId);
17
$session->setToken($token);
18
 
19
$call = Services_Ebay::loadAPICall('GetEbayOfficialTime');
20
$result = $call->call($session);
21
 
22
echo $result;
23
?>