I don't know if I am doing this write but I want to use the aspectFilter in the api call but it doesn't seem to be change the output I receive. When I do an api call through the url it does work. Does this api not support aspect filter or am I not doing this right. I looked through the code and could not find anything about aspectfilter.
Here is my code:
let Ebay = new ebayapi({
clientID: CLIENTID,
env: "PRODUCTION",
countryCode: 'EBAY-US',
});
var data = await Ebay.findItemsAdvanced({
keywords: "iPhone 12",
outputSelector: "AspectHistogram",
AspectName:"Color",
AspectValueName:"Blue"
});
I don't know if I am doing this write but I want to use the aspectFilter in the api call but it doesn't seem to be change the output I receive. When I do an api call through the url it does work. Does this api not support aspect filter or am I not doing this right. I looked through the code and could not find anything about aspectfilter.
Here is my code: let Ebay = new ebayapi({ clientID: CLIENTID, env: "PRODUCTION", countryCode: 'EBAY-US', });
var data = await Ebay.findItemsAdvanced({ keywords: "iPhone 12", outputSelector: "AspectHistogram", AspectName:"Color", AspectValueName:"Blue" });