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 a call object is
4
 * able to show its list of parameters
5
 *
6
 * $Id: example_features_DescribingCalls.php,v 1.2 2004/12/23 15:21:06 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('AddDispute');
20
echo '<pre>';
21
$call->describeCall();
22
echo '</pre>';
23
?>