I am using the eBay API to find currently listed items and need access to their category-specific features. The category is 'CCG Individual Cards' with category ID 183454. My api request is
api_request = { 'keywords': 'pokemon cgc', 'categoryId': ['183454'], 'paginationInput': { 'entriesPerPage': 100, 'pageNumber': 1 }, 'outputSelector': ['AspectHistogram',] }
but there is no aspectHistogramContainer in the output (not even null, it is just not there).
I'm a bit lost and would need this to be able to proceed. Thanks so much for the help!
In case it is of any help, here is a codepile with the full input and output code:
https://www.codepile.net/pile/5zK434LJ
EDIT:
-Changing the single ' to double " quotes and removing the comma after AspectHistogram doesn't change the response
-There is another similar question here suggesting that this feature might be broken. Could that be? It seems to be one of the basic features of findItemsAdvanced.