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

Get ProductListingDetails out of GetMyeBaySellingRequestType #65

Closed aario closed 7 years ago

aario commented 7 years ago

Hi, I send a GetMyeBaySellingRequest and in the Item I receive there is no ProductListingDetails. How can I get this Item? I have searched several different combinations of keywords on google and read through several pages of search results and never found anyone talking about that. There should be some parameter/magic number that tells ebay to send more details or another request per each item to get them. Please help. Thanks.

davidtsadler commented 7 years ago

If you look at the fields that is returned for GetMyeBaySelling you will see that ProductListingDetails is not available.

Sadly this information is not returned in many of the operations. A complete list of which calls return this field can be found in the documentation

You may have to make separate calls to GetItem to get what you need.

aario commented 7 years ago

Thanks a lot for prompt response. And thanks for the useful code.