Libraries tagged by throttler
mtkh/idempotency-handler
12 Downloads
Block the concurrent/duplicate requests based on specific timeout
mikecheng/supports
34 Downloads
common components
marianperca/token-bucket
100 Downloads
Implementation of the Token Bucket algorithm.
leaducate/stiphle-leaducate
41 Downloads
Simple rate limiting/throttling for php
javansolo/http-send-file
43 Downloads
PHP lib which sends a file with support for (multiple) range requests and throttle.
eward/rate-limit-bundle
0 Downloads
symfony 限流
cschalenborgh/laravel-rate-limiter
702 Downloads
Rate limiter for Laravel
beningreenjam/api-wrapper
7 Downloads
Api-Wrapper is a simple Laravel 5.5 bridge for making, throttling, caching and transforming RESTful API requests made via GuzzleHttp.
bayfrontmedia/leaky-bucket
751 Downloads
Framework-agnostic throttling using the leaky bucket algorithm.
villermen/token-bucket
1 Downloads
Implementation of the token bucket algorithm.
jouwweb/token-bucket
1628 Downloads
Implementation of the token bucket algorithm.
jalismrs/gentle-force
121 Downloads
Library for limiting both brute-force attempts and ordinary requests, using leaky/token bucket algorithm, based on Redis
yufunny/laravel-cat
9 Downloads
concurrency and throttle for laravel/lumen
wpjscc/reactphp-limiter
18 Downloads
A generic rate limiter for the web and reactphp. Useful for API clients, web crawling, or other tasks that need to be throttled
kruegge82/billbee-php-sdk-api
14 Downloads
Documentation of the Billbee REST API to connect a Billbee account to external aplications. ## Endpoint The Billbee API endpoint base url is https://api.billbee.io/api/v1 ## Activation You have to enable the API in the settings of your Billbee account. In addition you need a Billbee API Key identifying the application you develop. To get an API key, send a mail to [email protected] and send us a short note about what you are building. ## Authorization & security Because you can access private data with the Billbee API, every request has to be sent over https and must * Contain a valid API Key identifying the application/developer. It has to be sent as the HTTP header X-Billbee-Api-Key * Contain a valid user login with billbee username and api password in form of a basic auth HTTP header ## Throttling 50 calls per second for each API Key. 10 calls per second for each API Key in combination with Billbee user. Besides that each endpoint has a throttle of max 2 requests per second per combination of API Key and Billbee user. When you exceed the throttle threshold, the API will return a HTTP 429 status code and a Retry-After-Header indicating how many seconds you will have to wait before you can call the API again.