Sophie

Sophie

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

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

<?PHP
/**
 * example that fatches feedback of a user
 *
 * $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 summary
 */
echo 'Get only the summary<br />';
$feedback = $ebay->GetFeedback('loislane-74');
echo	"<pre>";
print_r($feedback->toArray());
echo	"</pre>";

/**
 * get the detailed feedback
 */
echo 'Get verbose feedback<br />';
$feedback = $ebay->GetFeedback('loislane-74', Services_Ebay::FEEDBACK_VERBOSE);
echo	"<pre>";
print_r($feedback->toArray());
echo	"</pre>";

foreach ($feedback as $entry) {
    echo $entry;
    echo "<br />";
}

if ($entry = $feedback->getEntry(0)) {
    echo 'Pick one feedback entry:<br />';
    echo	"<pre>";
    print_r($entry->toArray());
    echo	"</pre>";
}
?>