When you run the Twitter API statuses / update, http_code 429 will come back. why? Are they? How to avoid?
There’s a list of codes here: https://dev.twitter.com/overview/api/response-codes
429 is “Too many Requests”.
Thank you.
429 Message “Too Many Requests” is per-API Key? Or per-user?
Per user and API token, since this is a POST request. statuses/update is an account limit.
Thanks