I'm trying to login to devise using curl as follows
curl -v -b cookie.file -c cookie.file -H "Content-Type: application/json" -X POST -d '{"user" : {"email":"MYUSER" , "password":"MYPASSWORD" }}' http://localhost:3000/users/sign_in.json
The rails server logs shows - WARNING: Can't verify CSRF token authenticity
Is it possible to get CSRF token authenticity and pass it to the sign_in request to login successfully using devise?