I am running into some issues regarding the Authenticity Token in Rails, as I have many times now.
But I really don\'t want to just solve this problem and go on. I w
The Authenticity Token
is rails' method to prevent 'cross-site request forgery (CSRF or XSRF) attacks'.
To put it simple, it makes sure that the PUT / POST / DELETE (methods that can modify content) requests to your web app are made from the client's browser and not from a third party (an attacker) that has access to a cookie created on the client side.