Questions tagged [http-status-code-429]

The HTTP 429 “Too Many Requests” status code is related to rate limiting. Servers respond with the 429 status code to any client that has, in a given amount of time, sent some number of requests that exceeds whatever particular number of requests the server limits clients to. A Retry-After header might be included in a 429 response, to indicate to the client how long to wait before making a new request.

See:

169 questions
4
votes
1 answer

Apache Reverse Proxy changes status code

Background We have been running an application on JBoss that is exposed to the clients via an Apache Reverse Proxy. We recently introduced "HTTP 429 Too many requests" to slow down high velocity requests. Problem However, it seems that apache2…
UltraInstinct
  • 43,308
  • 12
  • 81
  • 104
4
votes
3 answers

Twitter API is returning HTTP 429 - Too Many Requests

I make the twiiter application and I make a loop for getting data from twitter API It showed error [raw] => HTTP/1.1 429 Too Many Requests [content-type: application/json; charset=utf-8 date: Fri, 29 Mar 2013 20:03:07 UTC server: tfe set-cookie:…
Tanapat Ruengsatra
  • 101
  • 1
  • 2
  • 7
3
votes
2 answers

Kucoin futures API [python] - "code":"429000","msg":"Too Many Requests"

I have a problem when I send an order to kucoin exchange with the API. "code":"429000","msg":"Too Many Requests" It seems that my code send too many requests to Kucoin, my IP address exceed the rate limit (the request rate limit is 30…
3
votes
1 answer

Unexpected rate limit on Twitter API V2 (POST Create a Tweet)

I am fairly new to the Twitter API and I've got the following issue. I try to send a tweet with the 'Twitter v2 API / Manage tweets / POST Create a Tweet' endpoint. Unfortunately this results in an error '429', every time I call this endpoint…
ABBOV
  • 55
  • 4
3
votes
2 answers

how to avoid (or handle) http 429 programmatically

I have a page with a lot of tags (I am assembling this page programmatically). Inevitably some of the requests for image encounter http 429. Thankfully, the remote server sends a bunch of helpful response headers as follows HTTP/1.1 429 TOO…
punkish
  • 13,598
  • 26
  • 66
  • 101
3
votes
1 answer

Retry the same task multiple times in C# when API returns "too many requests" error

I have a generic method for executing an asynchronous tasks in synchronous context with retries. public static T RunWithRetries(Task task) { while(...) // 3 attempts { try { task.GetAwaiter().GetResult(); …
Gab
  • 471
  • 3
  • 10
  • 25
3
votes
1 answer

How to handle Quota exceeded error 429 in google sheets when inserting data through python?

I am new to python and currently handling one of freelancing assignments. In my project I am given subject name xls file which on weekly occasions get updated with new names. I am able to scrape data for the given name and through python insert the…
3
votes
4 answers

How can I bypass the 429-error from www.instagram.com?

i'm solliciting you today because i've a problem with selenium. my goal is to make a full automated bot that create an account with parsed details (mail, pass, birth date...) So far, i've managed to almost create the bot (i just need to access to…
timogo
  • 31
  • 1
  • 1
  • 3
3
votes
1 answer

How to avoid error 429 (Too Many Requests) python with Asyncio

I am using the following code to make requests with aiohttp client. The server that I am trying to send request has a 30k request limit per hour per IP. So I am getting 429 too many request error. I want to put the job on sleep whenever it hits the…
jack mh
  • 75
  • 1
  • 7
3
votes
3 answers

Python Geopy Nominatim too many requests

The following script works perfectly with a file containing 2 rows but when I tried 2500 row file, I got 429 exceptions. So, I increased the query time to 5 seconds. I also filled the user agent. After unsuccessful attempts, I connected to VPN to…
3
votes
1 answer

429 Too many requests when generating presigned urls for s3 objects using aws-sdk

I have an app which is a Digital Asset Management system. It displays thumbnails. I have these thumbnails set up to be served with AWS S3 presigned urls: https://docs.aws.amazon.com/AmazonS3/latest/dev/ShareObjectPreSignedURLJavaSDK.html. This…
3
votes
1 answer

RSolr::Error::Http (RSolr::Error::Http - 429

I am working on Ruby on Rails project hosted on heroku server. the search functionnalit works fine on localhost. But when i try on production i get the following error: RSolr::Error::Http (RSolr::Error::Http - 429 Error:…
sk555
  • 828
  • 2
  • 8
  • 23
3
votes
1 answer

YouTube error HTTP 429 - Too Many Requests

I have some php code that fetches a youtube link and then gets its thumbnail. For that I am using this: $str = file_get_contents(youtubelink); But I am getting this error sometimes: Warning:…
user3455531
  • 775
  • 1
  • 14
  • 28
2
votes
1 answer

What would be the proper HTTP Status code when user exceeds daily transfer limit?

Each user has daily credit limit. If user exceeds their daily limit what HTTP status code would be right here. 403 -Forbidden or 200 -Success (with validation Result)
2
votes
2 answers

Why do I keep getting '429 Too Many Requests' for put requests to add members to a list on Twitter's API?

I am using the following Tweepy code to access the Twitter API endpoint https://api.twitter.com/1.1/lists/members/create.json It seems that I cannot add more than about 80 members in a given day, but the rate limit is stated to be 75 / 15 minutes. I…
1
2
3
11 12