You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was using the API for the first time 12 hours ago. I downloaded the python sdk and inserted the access / secret key and the correct informations about my current marketplace (brazil). I was getting this error:
Error calling PA-API 5.0!
Status code: 401
Errors : {"__type":"com.amazon.paapi5#UnrecognizedClientException","Errors":[{"Code":"UnrecognizedClient","Message":"The Access Key ID or security token included in the request is invalid."}]}
I doubled checked so many times my credentials, recreated it and decided to use this sample code posted here:
from amazon_paapi import AmazonApi
KEY = "XXXXXX"
SECRET = "XXXXXX"
TAG = "XXXXXX-20"
COUNTRY = "BR"
amazon = AmazonApi(KEY, SECRET, TAG, COUNTRY)
item = amazon.get_items('B0BFTFK1BN')[0]
print(item.item_info.title.display_value)
Now i am getting this:
amazon_paapi.errors.exceptions.TooManyRequests: Requests limit reached, try increasing throttling or wait before trying again
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello,
I was using the API for the first time 12 hours ago. I downloaded the python sdk and inserted the access / secret key and the correct informations about my current marketplace (brazil). I was getting this error:
Error calling PA-API 5.0!
Status code: 401
Errors : {"__type":"com.amazon.paapi5#UnrecognizedClientException","Errors":[{"Code":"UnrecognizedClient","Message":"The Access Key ID or security token included in the request is invalid."}]}
I doubled checked so many times my credentials, recreated it and decided to use this sample code posted here:
from amazon_paapi import AmazonApi
KEY = "XXXXXX"
SECRET = "XXXXXX"
TAG = "XXXXXX-20"
COUNTRY = "BR"
amazon = AmazonApi(KEY, SECRET, TAG, COUNTRY)
item = amazon.get_items('B0BFTFK1BN')[0]
print(item.item_info.title.display_value)
Now i am getting this:
amazon_paapi.errors.exceptions.TooManyRequests: Requests limit reached, try increasing throttling or wait before trying again
It's been taking like 6 hours.
How much time should i wait to keep trying?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions