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
1
vote
1 answer

Google Apps Script, using UrlFetchApp.fetch with large number of URL's

I've been trying to figure out how to get the UrlFetchApp.fetch method to work correctly on an array of 100+ url's that I need it to fetch for a script. I either hit error 429's (too many requests), or if I put any kind of sleep between iterations…
1
vote
0 answers

Can I use sleep() to a solve a HTTP code 429 error when using file_get_contents() in PHP?

for ($x = 1 ; $x <= 100 ; $x++) { $file = "http://urlishere?parameter1={$x}" //An example JSON string. $jsonString = file_get_contents($file); // Additional processing here } Executing the above has occasionally…
forgodsakehold
  • 870
  • 10
  • 26
1
vote
1 answer

HTTP Error 429: Too Many Requests by python geopy

I have a problem that I am not sure how to solve. I want to iterate through a file where I want to convert the coordinates to the geolocation address.The code works fine but after it iteretes through a certain number of lines in the file the problem…
Vedad
  • 223
  • 4
  • 15
1
vote
1 answer

Why file_get_contents() returns “failed to open stream: HTTP request failed!”? HTTP/1.0 429 Unknown

I am having problems with file_get_contents. I needed to get contents from this url: http://steamcommunity.com/market/priceoverview/?currency=1&appid=730&market_hash_name=P250%20|%20Valence%20(Field-Tested) Works good when i open it with my browser,…
user1546616
  • 43
  • 1
  • 5
1
vote
1 answer

Python mechanize returns HTTP 429 error

I am trying to do an automated task via python through the mechanize module: Enter the keyword in a web form, submit the form. Look for a specific element in the response. This works one-time. Now, I repeat this task for a list of keywords. And am…
0
votes
1 answer

Unexpected rate limit on Twitter API V2: POST Create a Tweet

I am using the new to the Twitter API and I've got the following response: 2023-08-31T17:20:45,339+02:00 [scheduling-1] INFO okhttp3.OkHttpClient - date: Thu, 31 Aug 2023 15:20:45 UTC 2023-08-31T17:20:45,340+02:00 [scheduling-1] INFO …
Nuñito Calzada
  • 4,394
  • 47
  • 174
  • 301
0
votes
0 answers

K6 auth0 (429 errors)

I recently use K6 for ouu API load testing, but unfortunately I'm blocked with auth0 (429 error ), I need to know if it's possible to set a session feature like pytest ? obtain an access token one time and pass it to all the iterations ? Thanks a…
0
votes
0 answers

POST http://localhost:1337/openai/text 505 (HTTP Version Not Supported)

I am creating a chat with AI GPT, but I'm getting an error 505 (HTTP Version Not Supported) when trying to use the following code: router.post("/text", async (req, res) => { try { const { text, activeChatId } = req.body; …
0
votes
0 answers

Error 429: Too many Requests when using MSXML.HTTP

I am trying to communicate to a WebAPI via MSXML, but whenever I try to request a response, my error-handle is called and it shows "Statuscode 429: Too many requests". When I paste the URL which I call into my browser, I get the correct and expected…
0
votes
0 answers

Rails + Apache = 429 (Too many requests)

I have a Rails 7 application that runs on a Docker container. I configured Apache to reverse proxy incoming requests to the container. Everything works fine, except that in specific pages that I need to load many images (~100 user profile images), I…
Fernando
  • 325
  • 2
  • 13
0
votes
1 answer

Pytends api throwing 429 error even if the request was made very first time

I am using the very simple code to find the data of the keyword by region. But everytime i ran it, it gives me 429 error, prompting that too many requests have been made but infact the request was made very first time and never before. The error i…
Hubaib
  • 13
  • 2
0
votes
1 answer

Google sheets exceeded for quota metric 'Read requests' - error 429

i'm having the following error : gspread.exceptions.APIError: {'code': 429, 'message': "Quota exceeded for quota metric 'Read requests' and limit 'Read requests per minute per user' of service 'sheets.googleapis.com' for…
Cbot
  • 11
  • 3
0
votes
1 answer

recursive function in javascript to avoid too many requests error not working

I'm getting a list of people from an api, then needs to loop through that list to get their image from a different api. The server where the images live has rate limiting in place, so I'm running into 429 errors (too many requests). I'm trying to…
0
votes
0 answers

R Language scraper - returns Error in value[[3L]](cond) : no loop for break/next, jumping to top level - loop issue

So im trying to create a iteration through a list of proxies - now just a bunch in a list... I created this code with some internet help to switch proxies when they encounter error 429. But it does the error and i cant just seem to figure it out in…
0
votes
2 answers

Facing throttle (Http 429) error when calling Graph API in the loop

I am developing a portal for meeting room booking similar to the one available on Power Apps. I want to call graph API to get the availability of each rooms in the tenet at the filtered time provided by the user. But it only provides result for 3-4…