pajaydev / ebay-node-api

eBay API Client for node
https://pajaydev.github.io/ebay-node-api
MIT License
132 stars 75 forks source link

Can't search items by epid with Auth flow #139

Closed rambonette closed 3 years ago

rambonette commented 3 years ago

Issue or Enhancement

Steps to reproduce

searchItems function does not accept an "epid" as parameter for the query.

Expected Behavior

ebay.getAccessToken().then((data) => { ebay .searchItems({ epid: }) .then( (data) => { console.log(data); }, (error) => { console.log(error); } ); });

Actual Behavior

rambonette commented 3 years ago

I already took the liberty to fix the 'searchItems' function by simply adding the epid field. I can push the branch if you want :)

rambonette commented 3 years ago

It's now possible to search with ePID using the searchItems function