<?php
“Laravel api too many requests”
//In app/Http/Kernel.php Laravel has a default throttle limit for all api routes.
protected $middlewareGroups = [
...
'api' => [
'throttle:60,1',
],
];
protected $middlewareGroups = [
...
'api' => [
'throttle:60,1',
],
];
0 comments:
Post a Comment
Thanks