When I call my API on postman and pass the data it display response 429 too many requests

132 Views Asked by At

I created blog API when I call and run the API with passing data Is says 429 too many requests

I am trying to run the API but it say 429 too many requests so give the possible solution on that. i am unable to getting it so.

1

There are 1 best solutions below

0
Ali Raza On

Try changing the throttle parameter in app/Http/Kernel.php.

protected $middlewareGroups = [
    'api' => [
        'throttle:60,1',
        'bindings',
    ]
];