What is CSRF token and how will you add CSRF token in ajax?

devquora
devquora

Posted On: Jan 06, 2021

 

A CSRF token is known as a unique, secret, unpredictable value that is generated by the server-side application. It is transmitted to the client in a way that is included in a subsequent HTTP request made by the client. CSRF stands for Cross-site request forgery.

You can add CSRF token in ajax as follows:

In between head, tag put <meta name="csrf-token" content="{{csrf_token()}}"> and in Ajax, we have to add the following code: 

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

 

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Appinventiv Php Developer Interview Questions

    How to find datatype of variable in PHP?

    You can find the datatype of a variable in PHP by using the Var_dump() and gettype() functions....

    Appinventiv Php Developer Interview Questions

    What is Interface? Why it is used?

    An interface can be defined as a platform that permits users to develop programs that mention all public methods that need to be implemented by various classes. It does not involve any complexity or d...

    Error
    Whoops, looks like something went wrong.