我使用带有沙盒的 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
方法返回项目的所有字段
你能帮我弄到ItemIDs
唯一的吗