Created
May 19, 2017 10:26
-
-
Save stoivo/c019979d0443b15ece8bbb33340f34c5 to your computer and use it in GitHub Desktop.
This is one way to add csrf-token to your request from elm to rails. This is general solution, I use it with rails.
This file contains hidden or 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 send = XMLHttpRequest.prototype.send, | |
token = document.querySelector("meta[name=csrf-token]").getAttribute("content"); | |
XMLHttpRequest.prototype.send = function(data){ | |
this.setRequestHeader('X-CSRF-Token', token); | |
return send.apply(this, arguments); | |
} | |
})(); | |
console.log("csrf-token: " + document.querySelector("meta[name=csrf-token]").getAttribute("content")) | |
// To test that it works | |
// var xhr = new XMLHttpRequest(); | |
xhr.open('POST', '/api/v1/events', true); | |
xhr.onload = function () { | |
console.log("Request finished. Do processing here."); | |
}; | |
xhr.setRequestHeader("Content-type", "application/json; charset=utf-8"); | |
xhr.send('{"event":{"projectId":10,"users":[1,2]}}'); | |
// Thanks to Louis Simoneau & Rahul Trikha | |
// Taken from there talk on Elm, at RubyConf AU 2017 | |
// https://youtu.be/Bd6DTg1uNe0?t=27m58s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment