davidtsadler / ebay-sdk-php

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

How i can get all items with full information of my seller ? #84

Closed Hoodognik closed 7 years ago

Hoodognik commented 7 years ago

Help me please How i can get all items with flull information of my seller ? I need get all products with full information and images for import to my site. I'll try use for this GetMyeBaySellingRequestType() and i get Activelist, but list not have full information about item.

davidtsadler commented 7 years ago

eBay doesn't provide that many methods for obtaining a complete inventory list. You could try GetSellerList to see if that meets your needs.

If you have any further usage questions regarding the SDK I've setup a forum where I will try and help as best I can.

michabbb commented 7 years ago

@Hoodognik tip: if you have to deal with thousands of listings in your account, try to parallel this job, for example with threading, gearman, rabbitmq or amazon sqs, because you have to deal with pages. and worst of all: you don´t get all infos like you get it from "GetItemDetails" - so in worst case you have to do a single GetItem for every single item of "GetSellerList" btw.. if someone knows something better, please let me know ;)