// one request per 6 seconds
->middleware('throttle:1,0.1');
Jun 28, 2022
5
Level 8
Is it possible to specify the time between each post request ?
I have a post route, I want to avoid user to send many requests , I tried to use throttle but the problem is the throttle can only set a specific number of requests per X minutes. It means if I set 10 request per minute It's possible to request 10 request in the first second only! But as I said in the title I want to set time between requests . Thnaks
Please or to participate in this conversation.