我有一个拍卖网站,我想为注册用户开发一个功能,将他们的ebay列表(他们在ebay上销售的商品)导入我的网站。我在互联网上搜索了这个主题,但没有得到任何正确的想法。如果有人对此有所了解请帮助
答案 0 :(得分:0)
eBay正在根据您的网站/系统将从eBay卖家帐户获取商品来证明API。
要访问eBay API,您需要 App ID / Cert ID / Dev ID&令牌,您可以从以下链接中参考。
http://developer.ebay.com/DevZone/XML/docs/HowTo/Tokens/GettingTokens.html
GetSellerlist 会返回零个或多个项目的数组,具体取决于用户的活动和呼叫中使用的输入。
http://developer.ebay.com/devzone/xml/docs/Reference/eBay/GetSellerList.html#GetSellerList
<?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>
这可能会对你有帮助。