Questions tagged [rate-limiting]

Rate limiting is used to control the rate of traffic sent or received on a network interface.

Traffic that is less than or equal to the specified rate is sent, whereas traffic that exceeds the rate is dropped or delayed. Rate limiting is performed by policing (discarding excess packets), queuing (delaying packets in transit) or congestion control (manipulating the protocol’s congestion mechanism). Policing and queuing can be applied to any network protocol. Congestion control can only be applied to protocols with congestion control mechanisms, such as the transmission control protocol (TCP).

1053 questions
-1
votes
1 answer

How Can I send many messages to the same email that owned by specific company in a short time?

I want to send many messages to the same email that owned by a company Ex: admin@company.com but I don't have the programming background to do it. It's for testing purposes. Can anyone help?
Malek
  • 23
  • 6
-1
votes
1 answer

Consume an API that have a rate limit

I have an API that limit 10 calls/second from an IP - Lets call this API-1 I have a webapp that consumes API-1. Lets call this WebApp-1 If I my Web App have more traffic and needs to make more calls per second than allowed, how do I design WebApp-1…
-1
votes
1 answer

async/await with Limiter for sending requests

I'm trying to limit the number of requests I send to an API. I'm using Limiter and it's working just like I need, the only issue is that I can't find a way to use it with await (I need all the responses before rendering my page) Can someone give me…
-1
votes
2 answers

429 (Too Many Requests) error calling Hubspot API via cors-anywhere.herokuapp

I'm trying to build a web-application using React and for that I'm using Hubspot API to manage contacts in my account. For the HTTP request I'm using JavaScript library 'request-promise' with the proxy server:…
-1
votes
2 answers

API calls fail with Rate limit exceeded in OneLogin

I am trying to make a API call to Onelogin (which is a third-party identity platform), it fails with "Rate limit exceeded", after 5000 request. How can I increase the request or reset the counter?
Mayur
  • 1
-1
votes
1 answer

How can we test an API's rate limit using gatling tool?

I am new to exploring gatling and I'm trying to achieve a different case in testing rate limits. Firstly, is gatling a good tool to test rate limits? Also, what in-built functions/methods can I use to call a single http API call certain no. of times…
anonymous-explorer
  • 365
  • 1
  • 12
  • 26
-1
votes
1 answer

Retriving all tweets from an hashtag. Problem recovering from rate limit with tweepy

i am trying crawl all tweets of a hashtag #nationaldoughnutday but failing to do so due to rate limit. with reference to the code below, i tried to put the code in a while loop so that when rate limit resets, i can resume scraping from the last…
DJ_
  • 237
  • 1
  • 2
  • 8
-1
votes
1 answer

How to search for pages by name in Facebook Graph API with least amount of calls using Python?

I have a list of football team names my_team_list = ['Bayern Munich', 'Chelsea FC', 'Manchester United', ...] and try to search for their official Facebook page to get their fan_count using the Python facebook-api. This is my code so far: club_list…
JoeBe
  • 1,224
  • 3
  • 13
  • 28
-1
votes
1 answer

Can servers limit the number of incoming TLS connections?

I wrote a Java application that communicates with a 3rd-party server that is hosted on AWS. According to what I've read, there are no connection limits on their REST API, yet regardless of how many threads I try to hit them with I am seeing a limit…
Gili
  • 86,244
  • 97
  • 390
  • 689
-1
votes
2 answers

Can i pass a dynamic value to a decorator in python?

I am a bit new to python and its concepts. For my current project i need to do certain api calls at x rate/y mins. Regarding this i came across the concept of decorator and a python library for the same. Its called ratelimit and click here to go to…
-1
votes
1 answer

How to apply anvil ratelimit on postfix mynetworks host?

We are using Postfix MTA as smarthost relay for our application servers. We are maintaining the access through "Mynetworks". We have list of IP addresses which are map to "Mynetworks". Now days we are facing the issue of spamming / mass mailing…
Vendhala
  • 15
  • 2
-1
votes
2 answers

Node.js dialling back API requests

I have a list of 125,000 + Id numbers. I am making a request to an api to get more information for each one. But my problem is that the api will stop giving me a response if I request more then 6 per second. I need a way to control the speed of the…
Bill
  • 4,614
  • 13
  • 77
  • 132
-2
votes
1 answer

How to Increase twitter web rest api endpoints limit for followers

I am using the Twitter web API to scrape some followers. Previously, I was able to obtain around 50,000 followers in a 15-minute window, but now I am only getting 5,000 in that same time frame, and I'm hitting the rate limit…
-2
votes
1 answer

Discord py, get rate limit timer

I have a bot written in python. Help me deal with HTTP requests. There is a task: rename the channel on command. But discord has a limit on renaming the channel (2 times in 10 minutes). I need to get a timer in seconds from the API and insert it…
Alex
  • 11
  • 1
-2
votes
2 answers

How can I find the rate of safely scraping or crawling a website without getting blocked?

I define rate as the Number of HTTP Requests per unit time. I don't know the time after which I would get blocked (e.g. 1000 requests per day). I'm trying to determine this rate for any url. How can I accomplish this? What is the strategy that I can…
1 2 3
70
71