Home >Backend Development >PHP Tutorial >How to Resolve Laravel API 419 Status Code for POST and PUT Requests?
Why Laravel API Returns 419 Status Code on POST and PUT Methods
In Laravel, an HTTP 419 status code during POST or PUT requests often signifies a CSRF token mismatch. This token, used to prevent cross-site request forgeries (CSRF), can interfere with RESTful API operations.
Solution for Laravel 5.4 or Later
In Laravel 5.4 and higher, a dedicated API controller can be created using php artisan make:controller ApiController. This controller is placed in the app/Http/Controllers/API directory, and it excludes CSRF token verification by default.
Solution for Laravel 5.3 and Earlier
Two approaches can be employed for earlier versions of Laravel:
Define Excluded Routes:
Add the following code to your app/Http/Middleware/VerifyCsrfToken.php middleware:
<code class="php">protected $except = [ 'api/*', ];</code>
Use api.php:
If using Laravel 5.5, create a new routes/api.php file and define routes that do not require CSRF token verification. For older versions, create a separate app/Http/routes.php file and include routes in this file instead of routes/web.php.
The above is the detailed content of How to Resolve Laravel API 419 Status Code for POST and PUT Requests?. For more information, please follow other related articles on the PHP Chinese website!