jim256 / ebay

0 stars 0 forks source link

Error 61 - Page Limit Exceeded #20

Closed jim256 closed 4 years ago

jim256 commented 4 years ago

Would you mind taking a look at the errors from the below screenshot in the attached log file?:

image

ebay.log.zip

You'll need to remove the .zip extension from the filename

james-carpenter commented 4 years ago

Per eBay API specifications:

Note: No more than 10,000 items can be retrieved for a given search, regardless of how many matches are found. This limit is enforced by the maximum page number allowed (100) and the maximum entries per page allowed (100).

To work around this if you expect to exceed this limit an a regular basis, I would recommend having multiple config.json files with differing filter criteria that break up the results (ideally fairly evenly). Then you can schedule both to run via cron.

run.py ebay --configfile=config-lowmiles.json --loglevel=INFO
run.py ebay --configfile=config-highmiles.json --loglevel=INFO

Then they are separate searches and will be allowed to exceed the limit.