【发布时间】:2015-07-30 12:05:34
【问题描述】:
我使用带有沙盒的 eBay SDK 921 API。
我想获取我所有的项目 ID(我有很多项目,我想提高性能),我使用以下代码:
GetMyeBaySellingCall apicall = new GetMyeBaySellingCall(this.Context);
apicall.DetailLevelList.Add(DetailLevelCodeType.ReturnAll);
apicall.ApiRequest.OutputSelector = new StringCollection(new string[] { "ItemID" });
apicall.GetMyeBaySelling();
var sellerlist = apicall.ActiveListReturn.ItemArray.ToArray();
但是GetMyeBaySelling方法返回了Items的所有字段
你能帮我弄到ItemIDs吗
【问题讨论】:
标签: .net performance ebay-api ebay-net-sdk