2 Answers
- Newest
- Most votes
- Most comments
3
Please aware about API rate limits:
https://webservices.amazon.com/paapi5/documentation/troubleshooting/error-messages.html
May considering implement exponential backoff:
delay = 1
while request_fails:
wait(delay)
delay *= 2
0
Have you set the host, marketplace and region according to https://webservices.amazon.com/paapi5/documentation/common-request-parameters.html#host-and-region
I faced the a very similar problem. Credentials and API works on US, but constantly 429 on SG, even though it says activated in https://affiliate-program.amazon.sg/home
host = 'webservices.amazon.sg'; marketplace = 'www.amazon.sg'; region = 'us-west-2';
Can Amazon please troubleshoot instead of speculate?
answered a year ago
