<?php /** * example that changes the adress of the user * * $Id$ * * @package Services_Ebay * @subpackage Examples * @author Stephan Schmidt */ error_reporting(E_ALL); require_once '../vendor/autoload.php'; require_once 'config.php'; $session = \Services\Ebay::getSession($devId, $appId, $certId); $session->setToken($token); $ebay = new \Services\Ebay($session); $result = $ebay->SetSellerPaymentAddress('Clark Kent', 'Foo Bar street', null, 'San Francisco', 'CA', 'USA', '94101'); if ($result === true) { echo 'Address succesfully updated'; } else { echo 'An error occurred.'; }