Products Endpoint Not Returning Expected Results #61
-
Hi, I've been successful so far in connecting to the Catalog endpoint, and have been able to parse results. However, when I try to use the Products endpoints, I don't get what look like normal results returned. Below is my code. The ASIN I'm checking is a known ASIN that I can find on Amazon. from sp_api.api import Products print('Start API') ASINString = 'B085B26VXX' The results I'm getting look like they are parsing each of the individual characters of the "ASINString" I've created and checking each of them. Below is the printed response I'm getting: [ I'm new to using Python, so I could be making a simple mistake in providing a string as a list, but from what I understand, this is the appropriate way to provide the asin_list argument in this instance. Thanks for your help! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
asins needs to be a list, not a string. The rest of the code looks fine and will work. |
Beta Was this translation helpful? Give feedback.
asins needs to be a list, not a string. The rest of the code looks fine and will work.