Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

how to fix error 429 too many requests laravel

// In app/Http/Kernel.php Laravel has a default throttle limit for all api routes.

protected $middlewareGroups = [
    ...
    'api' => [
        'throttle:60,1', //you can comment it or increase
    ],
];
 
PREVIOUS NEXT
Tagged: #fix #error #requests #laravel
ADD COMMENT
Topic
Name
8+9 =