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
2
votes
0 answers

Avoiding HTTP "too many requests" error when using SPARQLWrapper and Wikidata

I have a list of approximately 6k wikidata instance IDs (beginning Q#####) I want to look up the human-readable labels for. I am not too familiar with SPARQL, but following some guidelines have managed to find a query that works for a single…
cookie1986
  • 865
  • 12
  • 27
2
votes
0 answers

Can't use Imgur API on localhost: 429 errors

I am consistently getting a 429 and this error: Imgur is temporarily over capacity. Please try again later. The Imgur status page indicates "All Systems Operational" and no recent incidents. Curiously, I don't get this error when I change from…
Arcanist
  • 46
  • 6
2
votes
2 answers

Selenium gets response code of 429 but firefox private mode does not

Used Selenium in python3 to open a page. It does not open under selenium but it does open under firefox private page. What is the difference and how to fix it? from selenium import webdriver from time import sleep driver =…
2
votes
0 answers

Efficient way to handle 429 error while processing request in batches on multiple instances

I have batches of 500 messages. And to send them I am using the external API which allows sending only 1 message at a time. Also, they have a rate limit of 10/seconds. If there is a single instance then I can handle the rate limit by adding a delay…
2
votes
1 answer

Angular produces 429 Status Code for Get Request, cURL, Python and fetch work just fine

I'm working on a simple enough website and I need to perform a get request to Imgur's API. Using the following works fine: curl -v --location --request GET 'https://api.imgur.com/3/album/WFWR56Z/images' \ --header 'Authorization: Client-ID…
Doogyb
  • 63
  • 5
2
votes
1 answer

Python HTTP error 429 (Too Many Requests)

I used to fetch a CSV file from a URL and put that CSV file directly to a Pandas dataframe like this: import pandas as pd grab_csv = 'https://XXXX.XX/data.csv' pd_data = pd.read_csv(grab_csv).drop(columns=['Column 1', 'Column 2', 'Column 3',…
Ferit
  • 558
  • 1
  • 5
  • 19
2
votes
0 answers

Confusing Microsoft GraphAPI Throttling Behavior

When making a request to the POST /groups/{id}/events endpoint, the Microsoft Graph API sometimes returns a status code 429 error response, indicating that too many requests have been made in too short a time period and that requests are being…
2
votes
1 answer

Laravel rate limit throttle for /oauth/token Passport endpoint

I'm trying to disable rate limiting for Passport's built-in oauth/token endpoint in Laravel 5.8, and I figured just removing the throttle middleware from api would do it: 'api' => [ // 'throttle:60,1', 'bindings', ], But although this…
Ryan Bobrowski
  • 2,641
  • 3
  • 31
  • 52
2
votes
0 answers

Genderize names API, request limit reached - can't get google sheets custom function to work

I'm trying to create a simple custom function using the Genderize API in Google Sheets using Google Apps Script, but I keep getting a request limit reached 429 error from the genderize API. I'm sure that I haven't exceeded the limit of 1000…
2
votes
2 answers

How to find/cure source of function app throughput issues

I have an Azure function app triggered by an HttpRequest. The function app reads the request, tosses one copy of it into a storage table for safekeeping and sends another copy to a queue for further processing by another element of the system. I…
2
votes
2 answers

Creating Multiple Google Sheets PDFs throws 429 error

I'm stuck. I'm hoping someone out there has figured out a way to generate a bunch of PDF's off of Google Sheets. I run the same report for a list of companies and generate PDF snapshots of each report which are saved in Drive. I get a 429 error…
2
votes
0 answers

Http 429 Too many Requests Apache

I have got an installed WAMP Stack with Apache 2.4.23, PHP 5.6.25 and MySQL 5.7.14. On this server there is a small PHP Laravel application which only serves as a Web-Service-API for inserting Data. When we try to insert Data evey 300 Milliseconds,…
Andreas Zeiner
  • 537
  • 7
  • 24
2
votes
3 answers

Python HTTP Error 429 with urllib2

I am using the following code to resolve redirects to return a links final url def resolve_redirects(url): return urllib2.urlopen(url).geturl() Unfortunately I sometimes get HTTPError: HTTP Error 429: Too Many Requests. What is a good way to…
Bijan
  • 7,737
  • 18
  • 89
  • 149
2
votes
1 answer

HTTP 429 Too Many Requests when accessing a Reddit .json page only once using Java

I am getting a HTTP 429 Too Many Requests response when I attempt to access any Reddit page using a .json extension using Java. I am using Java code found here without any modification (except to change the target URL). I am attempting to access…
Porthos3
  • 381
  • 5
  • 19
2
votes
1 answer

Rate Limit Error to Nest Thermostat - Response Code 429

I use a very cool Google Script I found on Github (source: https://gist.github.com/beezly/9b2de3749d687fdbff3f) to fetch the temperature on my Nest thermostat and log it into a Google Spreadsheet. It is working great when I run the script manually,…
1 2
3
11 12