Created
May 19, 2017 10:26
-
-
Save stoivo/c019979d0443b15ece8bbb33340f34c5 to your computer and use it in GitHub Desktop.
Revisions
-
stoivo renamed this gist
May 19, 2017 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -10,8 +10,8 @@ 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."); -
stoivo created this gist
May 19, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ (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