Closed jrm2107 closed 4 years ago
In your example 11-get-my-ebay-selling.php:
adding $item->Description does not work
if ($response->Ack !== 'Failure' && isset($response->ActiveList)) { foreach ($response->ActiveList->ItemArray->Item as $item) { printf( "(%s) %s: %s %s %.2f\n", $item->ItemID, $item->Title, $item->Description, $item->SellingStatus->CurrentPrice->currencyID, $item->SellingStatus->CurrentPrice->value ); } }
If you want to use this SDK, you should really know how the ebay api is working
indulge me, professor.
In your example 11-get-my-ebay-selling.php:
adding $item->Description does not work