“419 Statut inconnu” Réponses codées

419 Statut inconnu

//It's an error of csrf token, there is multiples ways to fix it, too much to 
//write a grepper answer on.

//419 : error of csrf token

//Common way to fix it, try this
$.ajaxSetup({
    headers: {
        'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
    }
});
L'homme habile

Statut d'appel HTTP: 419

Use this in the head section:

<meta name="csrf-token" content="{{ csrf_token() }}">

and get the csrf token in ajax:
$.ajaxSetup({
  headers: {
    'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
  }
});
Lokesh003Coding

Réponses similaires à “419 Statut inconnu”

Questions similaires à “419 Statut inconnu”

Plus de réponses similaires à “419 Statut inconnu” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code