About 241,000 results
Open links in new tab
  1. How to avoid HTTP error 429 (Too Many Requests) python

    242 Receiving a status 429 is not an error, it is the other server "kindly" asking you to please stop spamming requests. Obviously, your rate of requests has been too high and the server is not …

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

    So far, I've managed to almost create the bot (I just need to access Gmail and get the confirmation code). My problem is here, because I've tried a lot of things, I have a Failed to …

  3. How to solve HTTP error 429 "too many requests" - Stack Overflow

    Sep 23, 2022 · How to solve HTTP error 429 "too many requests" Asked 3 years, 3 months ago Modified 2 years, 10 months ago Viewed 2k times

  4. OpenAI API giving error: 429 Too Many Requests [duplicate]

    Jan 7, 2023 · I am trying to make a request to the openai API with the following code in express nodeJS: import { Configuration, OpenAIApi } from "openai"; const configuration = …

  5. c# - Best way to handle HTTP 429 errors - Stack Overflow

    I think it's best to be proactive and throttle your api requests, so you never receive the 429 errors. We started experiencing the same thing on our app (429 errors) from an api we are …

  6. Error 429 with simple query on google with requests python

    Jun 25, 2019 · The HTTP 429 Too Many Requests response status code indicates that the user has sent too many requests in a given amount of time ("rate limiting"). The response …

  7. c# - How to return HTTP 429? - Stack Overflow

    I'm implementing an API using WCF and the specification says to return HTTP 429 in certain circumstances. Normally I'd simply write: throw new …

  8. OpenAI API error 429: "You exceeded your current quota, please …

    Mar 31, 2023 · Also, read more about Error Code 429 - You exceeded your current quota, please check your plan and billing details: This (i.e., 429) error message indicates that you have hit …

  9. Yahoo Finance API file_get_contents 429 Too Many Requests

    Mar 6, 2024 · HTTP/1.0 429 Too Many Requests" but when I use curl to the same URL from the command line of the server I get an actual response! I verified that both of the requests are …

  10. HTTP request error code 429 cannot be caught - Stack Overflow

    Sep 15, 2017 · In other words, a request with a 429 response is still a successfully executed request. The good is news is fetch provides a simple ok flag that indicates whether an HTTP …