Created
October 26, 2012 17:48
-
-
Save justinperkins/3960219 to your computer and use it in GitHub Desktop.
Put auth-token on all jQuery Ajax Requests
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function(){ | |
var tokenValue = $("meta[name='csrf-token']").attr('content'); | |
$.ajaxSetup({ | |
headers: {'X-CSRF-Token': tokenValue} | |
}); | |
}) |
@ses4j: I think that would be undesirable to expose the authorization header on a $.get to a third part resource (for example images)
This might be of your interest. This code extends jQuery Ajax to include token to the defined ajax requests types that was previously get from your server.
I successfully use that code in many projects
the url is here: https://github.com/marcinkrysiak1979/jquery-ajax-addToken
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for this – just one small note: I think the header needs to be
X-CSRFToken
notX-CSRF-Token
according to this thread – didn't work for me until I changed that.