How to pass along CSRF token in an AJAX post request for a form? How to pass along CSRF token in an AJAX post request for a form? ajax ajax

How to pass along CSRF token in an AJAX post request for a form?


Ok, after fighting this for a few hours and trying to decrypt Play's frequently-lacking-context-Documentation on the subject, I've got it.

So, from their docs:

To allow simple protection for non browser requests, Play only checks requests with cookies in the header. If you are making requests with AJAX, you can place the CSRF token in the HTML page, and then add it to the request using the Csrf-Token header.

And then there's no code or example. Thanks Play. Very descriptive. Anyway, here's how:

in your view.html.formTemplate you might write in IntelliJ:

@()<form method="post" id="myForm" action="someURL">@helper.CSRF.formField  <!-- This auto-generates a token for you -->  <input type="text" id="sometext">  <button type="submit"> Submit! </button></form>

And this will render like this when delivered to the client:

<form method="post" id="myForm" action="someURL"><input name="csrfToken" value="5965f0d244b7d32b334eff840...etc" type="hidden">  <input type="text" id="sometext">  <button type="submit"> Submit! </button></form>

Ok, almost there, now we have to create our AJAX call. I have all of mine in a separate main.js file, but you could also put this in your view.html.formTemplate if you want.

$(document).on('submit', '#myForm', function (event) { event.preventDefault();   var data = {    myTextToPass: $('#sometext').val()   } // LOOK AT ME! BETWEEN HERE AND var token =  $('input[name="csrfToken"]').attr('value')    $.ajaxSetup({        beforeSend: function(xhr) {            xhr.setRequestHeader('Csrf-Token', token);        }    });// HERE var route = jsRoutes.controllers.DashboardController.postNewProject() $.ajax({    url: route.url,    type: route.type,    data : JSON.stringify(data),    contentType : 'application/json',    success: function (data) { ...      },    error: function (data) { ...  }        })});

With this line:var token = $('input[name="csrfToken"]').attr('value')You are plucking out the CSRF token auto generated in your form field and grabbing its value in a var to be used in your Javascript.

The other important chunk from all that AJAX is here:

$.ajaxSetup({            beforeSend: function(xhr) {                xhr.setRequestHeader('Csrf-Token', token);            }        });

Using the $.ajaxSetup, you can set what's in the header. This is what you have to infer from their documentation:

add it to the request using the Csrf-Token header.

Good luck! Let me know if this is clear.


Note: when using lusca, use X-CSRF-Token instead of Csrf-Token.


From JSP

<form method="post" id="myForm" action="someURL">    <input name="csrfToken" value="5965f0d244b7d32b334eff840...etc" type="hidden">    </form>

This is the simplest way that worked for me after struggling for 3hrs, just get the token from input hidden field like this and while doing the AJAX request to just need to pass this token in header as follows:-

From JQuery

var token =  $('input[name="csrfToken"]').attr('value'); 

From plain Javascript

var token = document.getElementsByName("csrfToken").value;

Final AJAX Request

$.ajax({          url: route.url,          data : JSON.stringify(data),          method : 'POST',          headers: {                        'X-CSRFToken': token                    },          success: function (data) { ...      },          error: function (data) { ...  }});

Now you don't need to disable crsf security in web config, and also this will not give you 405( Method Not Allowed) error on console.

Hope this will help people..!!


add it to the request using the Csrf-Token header.

Thanks NateH06 for the header name! I was trying to send csrf token for a "delete" button with an ajax function call and I was stuck on the following:

@import helper._....<button id="deleteBookBtn" class="btn btn-danger"        data-csrf-name="@helper.CSRF.getToken.name"        data-csrf-value="@helper.CSRF.getToken.value"        data-delete-url="@routes.BooksController.destroy(book.id)"        data-redirect-url="@routes.HomeController.index()">Delete</button>

I wasn't able to add online js within the onclick() event because of a CSP set on play 2.6 too.

Refused to execute inline event handler because it violates the following Content Security Policy directive: "default-src 'self'".

And on the JS file:

function sendDeleteRequest(event) {  url = event.target.getAttribute("data-delete-url")  redirect = event.target.getAttribute("data-redirect-url")  csrfTokenName = event.target.getAttribute("data-csrf-name")  csrfTokenValue = event.target.getAttribute("data-csrf-value")  $.ajax({    url: url,    method: "DELETE",    beforeSend: function(request) {      //'Csrf-Token' is the expected header name, not $csrfTokenName      request.setRequestHeader(/*$csrfTokenName*/'Csrf-Token', csrfTokenValue);    },    success: function() {      window.location = redirect;    },    error: function() {      window.location.reload();    }  })}var deleteBookBtn = document.getElementById("deleteBookBtn");if(deleteBookBtn) {    deleteBookBtn.addEventListener("click", sendDeleteRequest);}

After setting the header name as 'Csrf-Token' the ajax call works perfectly!