Pages

24 February, 2022

Laravel api too many requests

 <?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',
    ],
];


No comments:

Post a Comment

Thanks