![]() |
CSRF vuejs-axios not working - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24) +--- Thread: CSRF vuejs-axios not working (/showthread.php?tid=69124) |
CSRF vuejs-axios not working - ponzo - 10-11-2017 Hi, Spending hours to post some vuejs - axios data to my codeigniter. PHP Code: axios({ In my config the token name is "csrf_token". csrf_regenerate is FALSE just to simplify the problem. http://puppyplaza.dev/api/save profile is a for now a simple controller to display the result (on my localhost) PHP Code: public function saveprofile() With Jquery it works ![]() data: {'csrf_token':'b2897db3f48b2c08c7313f280b290eb3'}, With axios it wont! ![]() Please, please anyone!? RE: CSRF vuejs-axios not working - ponzo - 10-12-2017 After hours of of research I came up with the idea to check the security class. Somehow the json post data from axios, or Superagent, or $http.post from my Vuejs file returns an empty ARRAY. So the checkup for the CSRF token is always false because there is no data! Therefore, if the $_POST is empty I check if there is any raw post input data and decode it By extending the Security core class, adding MY_Security.php to application/core PHP Code: <?php Copied the csrf_verify function from the original PHP Code: //if the $_POST array is empty, check for $raw_input_stream / php://input Is there a better approach for this problem? RE: CSRF vuejs-axios not working - Paradinight - 10-12-2017 (10-12-2017, 02:50 AM)ponzo Wrote: After hours of of research I came up with the idea to check the security class. https://github.com/axios/axios#using-applicationx-www-form-urlencoded-format Quote:By default, axios serializes JavaScript objects to JSON. To send data in the application/x-www-form-urlencoded format instead, you can use one of the following options. https://github.com/axios/axios/issues/362 I hope it help you a little bit. I do not know if it work. If you need help, i can make an example today/tomorrow. RE: CSRF vuejs-axios not working - bartMommens - 10-22-2019 Don't know if this thread is still active... just found it after writing https://forum.codeigniter.com/thread-74671.html Maybe helpful for new people ending up here |