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 lists all API calls the are supported by Services_Ebay
4
 *
5
 * $Id: example_features_introspection.php,v 1.1 2004/11/30 20:03:48 schst Exp $
6
 *
7
 * @package     Services_Ebay
8
 * @subpackage  Examples
9
 * @author      Stephan Schmidt <schst@php.net>
10
 */
11
error_reporting(E_ALL);
12
require_once '../Ebay.php';
13
require_once 'config.php';
14
 
15
$session = Services_Ebay::getSession($devId, $appId, $certId);
16
$session->setToken($token);
17
 
18
$ebay  = new Services_Ebay($session);
19
$calls = $ebay->getAvailableApiCalls();
20
 
21
echo '<pre>';
22
print_r($calls);
23
echo '</pre>';
24
?>