ebay-node-api icon indicating copy to clipboard operation
ebay-node-api copied to clipboard

findItemsAdvanced outputSelector options are not appearing to work

Open jphan88 opened this issue 2 years ago • 0 comments

Issue or Enhancement

  • [X] Issue
  • [ ] Enhancement / Improvement

Steps to reproduce

Hi, I am trying to use the findItemsAdvanced api specifically including outputSelector: "StoreInfo", it doesn't appear like any of the options for outputSelector works. This is my code below: thank you for all your help!

ebay.findItemsAdvanced({
        entriesPerPage: 100,
        keywords: 'keyword',
        outputSelector: 'StoreInfo' ,
        StartTimeFrom: date_from.toISOString(), 
        StartTimeTo: date_to.toISOString()

    }).then((bodyJson) =>

Expected Behavior

Expected to return the storeInfo array in the response object

Actual Behavior

It is absent from the response object

jphan88 avatar Jul 29 '22 22:07 jphan88