Too many Request and Too Many Attempts error in Laravel 9 Vue js 3 api error
what is best and permenant solution of this kind of api error?
Failed to load resource: the server responded with a status of 429 (Too Many Requests)
Don't send too many requests
Check why your app is sending more than 60 requests per minute.
@MohamedTammam I am working on vue js so api called in each and every page and I am working so testing time hit api again and again
@LaravelVueLearner check if you have a rate limit in App\Providers\RouteServiceProvider and see if commenting it out helps
If it does, you can set it to only be active in production
if (App::environment('production')) {
// rate limit
}
For development purposes, you can change the rate limit.
Please or to participate in this conversation.