如何获取卖家在eBay上所有的所有物品和交易。我可以使用以下代码成功接收过去10天的所有交易详情:
// Getting sold items
var durationSpecifiedeBaySellingCall = new GetMyeBaySellingCall(apiContext)
{
SoldList = new ItemListCustomizationType
{
DurationInDays = 10,
DurationInDaysSpecified = true,
Include = true
},
DetailLevelList = new DetailLevelCodeTypeCollection
{
DetailLevelCodeType.ReturnAll
}
};
durationSpecifiedeBaySellingCall.Execute();
但是我无法接收过去10年的所有交易,例如,将DurationInDays
的值替换为3650而不是10时。durationSpecifiedeBaySellingCall.SoldListReturn
为空。如何正确获取所有用户事务的列表?
答案 0 :(得分:2)
看起来您正在使用GetMyeBaySelling API调用,文档指出您最多只能拉60天。