示例#1
0
文件: GetUser.php 项目: dewawi/dewawi
$app = $config[$site]['appId'];
$cert = $config[$site]['cert'];
$token = $config[$site]['authToken'];
$location = $config[$site]['gatewaySOAP'];
// Create and configure session
$session = new eBaySession($dev, $app, $cert);
$session->token = $token;
$session->site = 0;
// 0 = US;
$session->location = $location;
// Make a GetUser API call and print results
try {
    $client = new eBaySOAP($session);
    // Default value is to use the user in the Auth & Auth token
    $params = array('Version' => $compatibilityLevel);
    $results = $client->GetUser($params);
    print "<pre> \n";
    print_r($results->User);
    print "</pre> \n";
    print "<p>---\n";
    // Or you can specify a UserID
    $UserID = 'ebay_user_name';
    $params = array('Version' => $compatibilityLevel, 'UserID' => $UserID);
    $results = $client->GetUser($params);
    print "<pre> \n";
    print_r($results->User);
    print "</pre> \n";
} catch (SOAPFault $f) {
    print $f;
    // error handling
}