Blame | Letzte Änderung | Log anzeigen | RSS feed
<?PHP/*** example that adds a response to a dispute** $Id: example_AddDisputeResponse.php,v 1.1 2004/10/28 17:14:53 schst Exp $** @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);$result = $dispute = $ebay->AddDisputeResponse('997', Services_Ebay::DISPUTE_RESPONSE_MESSAGE, 'This is only a test.');if ($result === true) {echo 'Added response';} else {echo 'An error occured';}?>