2017-09-12 10 views
0

私は目標を部分的にすべて保存しています。コールを使用すると、iアーカイブが必要な詳細(EPID、タイトル、Ebaycategory1、Ebaycategory2、Shopcategory1、Shopcategory2)を持つリストセットアイテムを取得できます。EBay APIを使用して、すべての私のリストセットのアイテムとアイテムの詳細を売り手として取得するには?

問題はtimerangeです。GetSellerListを使用すると、私は3ヶ月のtimerangeを設定できます。したがって、実際にリストされている3000個の2000アイテムが返されます。

私がtimerangeを増幅できるかどうか誰かが知っているかもしれない。

答えて

1

GetSellerListを使用して、販売している商品のリストを取得することができます。最新のアイテムを入手するには、StartTimeFromStartTimeTo要素をxmlに含める必要があります。 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を提供します
関連する問題