davidtsadler / ebay-sdk-php

An eBay SDK for PHP. Use the eBay API in your PHP projects.
Apache License 2.0
350 stars 343 forks source link

$item->Description returns null #173

Closed jrm2107 closed 4 years ago

jrm2107 commented 6 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
        );
    }
}
michabbb commented 6 years ago

If you want to use this SDK, you should really know how the ebay api is working

jrm2107 commented 6 years ago

indulge me, professor.