2014-09-30 40 views
0

所以我想獲得所有列出的項目ID的認證用戶。如何獲得有效的列表ID? GetMyeBaySelling返回不超過25,000項

要做到這一點我用Trading API GetMyeBaySelling method

請求示例:

[ActiveList] => Array 
    (
     [Include] => true 
     [Pagination] => Array 
      (
       [EntriesPerPage] => 200 
       [PageNumber] => 89 
      ) 

     [Sort] => StartTime 
    ) 

它工作得很好,直到我打魔術第125頁每一頁後,126,127,128,...返回我125頁。

因此,我只能獲得25000個房源。我沒有在文檔中的任何地方看到它。

I also found other people have same/similar issue

是否有任何其他選項,以獲取selelr上市的ID?

編輯:I also asked a question on ebaydev forums

我試圖加載125頁按時間排序的ASC,然後加載另一個125按時間倒序排序,但它不工作。此外,我收到此錯誤

[Errors] => stdClass Object 
    (
     [ShortMessage] => Data is truncated. 
     [LongMessage] => Partial data or invalid summary data is returned due to system limit. Please narrow your requested data and try again. 
     [ErrorCode] => 21366 
     [SeverityCode] => Warning 
     [ErrorClassification] => RequestError 
    ) 

回答