abersheeran / asgi-ratelimit

A ASGI Middleware to rate limit
Apache License 2.0
292 stars 11 forks source link

feature: custom 429 per limit #19

Closed euri10 closed 3 years ago

euri10 commented 3 years ago

so far we can have a custom 429 but only one, what would be cool is to have a custom 429 per limit, e.g.

429 "you reached your daily limit" if the daily limit is passed

however I wonder at what level this kind of config would make sense

abersheeran commented 3 years ago

Because 429 handler is a complete ASGI application. So as long as the current limiting information can be passed to it, a highly customized response can be achieved.