Sophie

Sophie

distrib > Mageia > 5 > i586 > media > core-release > by-pkgid > 80c85bd8af3c3e6f1d52f9e63d0ce450 > files > 52

php-pear-Services_Ebay-0.13.1-7.mga5.noarch.rpm

<?PHP
/**
 * example that fetches a user object
 *
 * $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);

/**
 * get the user information
 */
$user = $ebay->GetUser('loislane-74');

/**
 * access single properties
 */
echo 'Display a the user ID: ';
echo $user->UserID."<br>";

/**
 * get all properties
 */
echo 'Display all properties: ';
echo '<pre>';
print_r($user->toArray());
echo '</pre>';

/**
 * get feedback summary
 */
echo 'Get the feedback for the user';
$summary = $user->getFeedback();
echo "This user's score is ".$summary->FeedbackScore."<br />";

echo '<pre>';
print_r($summary['FeedbackSummary']);
echo '</pre>';
?>