Hey,
I'm using the node.js implementation of the ebay-finding api. I want to use findItemsByKeyword but I don't understand the behaviour of the function. For example, the call:
ebay.findItemsByKeywords({
keywords: 'playstation',
sortOrder: 'PricePlusShippingAsc',
entriesPerPage: 100,
pageNumber: 1
}).then((data) => {
console.log(data);
}, (error) => {
console.log(error);
});
gives me a searchResult of only 51 items and if I change the pageNumber to 2 I get a zero-results response. But in paginationOutput it says that there are 428.873 totalEntries.
Can someone explain what is happening here?