如何使用EBay API将我的所有项目和项目详细信息作为卖方获取?

时间:2017-09-12 07:29:24

标签: ebay ebay-api

我将我的目标部分归档。使用GetSellerList调用,我存档以获取我需要的详细信息(EPID,标题,Ebaycategory1,Ebaycategory2,Shopcategory1,Shopcategory2)的侦听项目。

问题是timerange,GetSellerList我可以设置3个月的时间范围,因此我只需要从实际列出的3000个项目中获取2000个项目。

任何人都知道我是否可以放大时间范围矿石可能会使用另一个电话给我上述数据?

1 个答案:

答案 0 :(得分:1)

您可以使用 GetSellerList 获取您要销售的商品列表。要获取最新项目,您需要在xml中包含 StartTimeFrom StartTimeTo 元素。 exmaple -

<?xml version="1.0" encoding="utf-8"?>
<GetSellerListRequest xmlns="urn:ebay:apis:eBLBaseComponents">
 <RequesterCredentials>
   <eBayAuthToken>ABC...123</eBayAuthToken>
 </RequesterCredentials
 <ErrorLanguage>en_US</ErrorLanguage>
 <WarningLevel>High</WarningLevel>
 <GranularityLevel>Coarse</GranularityLevel>
 <StartTimeFrom>2016-02-12T21:59:59.005Z</StartTimeFrom>
 <StartTimeTo>2016-02-26T21:59:59.005Z</StartTimeTo>
 <IncludeWatchCount>true</IncludeWatchCount>
 <Pagination>
   <EntriesPerPage>2</EntriesPerPage>
 </Pagination>
</GetSellerListRequest>

http://developer.ebay.com/devzone/xml/docs/Reference/eBay/GetSellerList.html#Samples

请确保使用正确的时间格式http://developer.ebay.com/devzone/xml/docs/Reference/eBay/types/simpletypes.html#dateTime

CedCommerce在Magento,WooCommerce,Shopify,Prestashop,Volusion等不同平台上提供Ebay integration apps