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

Http error 429 java handling?

I have a java program that searches a site for updates. It checks and than sleeps for a period of time set by user. During some testing I set the sleep time to 0 secs, forgot about it and it over-requested (over-spammed?, don't know the terminology)…
Invader Zim
  • 796
  • 2
  • 14
  • 39
2
votes
1 answer

Shopify API Suddenly Failing with HTTP Status Code 429?

Our application, which uses the Shopify API to updata our store's product data and get order information, suddenly is getting failed requests a new response error code: 429 (snapshot of the headers of a request below). Has anyone experienced this? …
MiGz
  • 592
  • 9
  • 20
1
vote
0 answers

instabot ERROR - Request returns 429 error

I am trying to make a small bot that publishes a photo on Instagram once a day at the same time, the problem is that the script stops at login and gives this error: 2023-03-31 10:51:48,466 - INFO - Instabot version: 0.117.0 Started 2023-03-31…
1
vote
1 answer

429 Too many requests only production server side, not localhost, not browser

I readed this post: C# (429) Too Many Requests and i understod the responde code but... why only return this status code when the call is done from server side (backend) and production mode (hosted)? the service never return this code when call (the…
Vandersan
  • 21
  • 3
1
vote
1 answer

Tracking 429 Quota Exceeded

How can I track which Google sheet triggered the below error? Google API error - [429] Quota exceeded for quota metric 'Read requests' and limit 'Read requests per minute per user' of service 'sheets.googleapis.com' for consumer…
1
vote
1 answer

How to avoid 429 error when using grequests?

I want to make a parser using "grequests", but as expected, due to many requests, i get an error 429. import grequests sites = [f"https://fantlab.ru/work{i}" for i in range(1, 10)] response = (grequests.get(url, timeout=5) for url in sites) resp…
Mop
  • 53
  • 5
1
vote
0 answers

Retry module interfering with 429 Retry-After logic

import json from pprint import pprint from requests.adapters import HTTPAdapter, Retry from csv import writer import pandas as pd from time import sleep def make_request(): fixed_api_key= '(insert api-key here)' owner='problematic' …
1
vote
0 answers

Getting error 429 on Cloudflare when using CURL

I am trying to pull data from a server using CURL. The website I am pulling from is obviously behind Cloudflare. Even though I am sending the exact same request (including same http headers), I still get error 429 returned from Cloudflare. I know…
Daniele Testa
  • 1,538
  • 3
  • 16
  • 34
1
vote
1 answer

Why am I reciving a 429 Error every time when using Selenium but none of the time when browsing normal on bstn.com?

After searching several hours on stack overflow and other pages I wasn't able to find any solution to my problem yet. I would like to scrape thru the page https://www.bstn.com/eu_de, via Python Selenium and ChromeDriver. When visiting the page with…
1
vote
2 answers

How do I know when RiotWatcher encounters a 429 error?

I use RiotWatcher to access the riot API with python. Since I do a lot of queries with a development key, I try to watch out for 429 errors indicating an overrun of the allowed query rate. In doing some testing, it seems that RiotWatcher includes an…
Poco
  • 9
  • 3
1
vote
3 answers

ERROR #gatsby-source-wordpress_111002 & Error: Request failed with status code 429

my gatsby project suddenly stopped working after this error as it was working fine previously ERROR #gatsby-source-wordpress_111002 gatsby-source-wordpress Error: Request failed with status code 429 at createError…
1
vote
0 answers

Which python framework/library helps to achieve handling API rate limit with asynchronous API call structure

I have to call third-party API in bulk(calling API more than 1000 times) and the third-party API has a rate limit of 10 request per second. Here is the architecture to call the third-party API. scheduler - which will take data from the primary…
Vasu
  • 31
  • 5
1
vote
0 answers

Using proxy with InstaBot in Python giving csrf token error

I am trying to create a bot to upload photos on instagram but after a couple of executions i'm getting the 429 Error. I want to use a proxy to bypass this I am using the below code from instabot import Bot bot =…
Chrs
  • 11
  • 1
1
vote
2 answers

URI.open fails getting reddit JSON (error 429)

I'm trying to get some JSON data from a subreddit with Ruby; but it fails, returning a 429 error. begin request = URI.open( 'https://www.reddit.com/r/vintageobscura.json', { "User-Agent"=>"web:myapp:v1.0.0 (by…
gordie
  • 1,637
  • 3
  • 21
  • 41
1
vote
1 answer

Configure timing of opening ports in Spring-Boot application

Question: Is there an option within spring or its embedded servlet container to open ports when spring is ready to handle traffic? Situation: In the current setup i use a spring boot application running in google cloud run. Circumstances: Cloud run…
Dennis
  • 145
  • 10