I'm asking this because I feel that it's making my life overly complicated when I start communicating with rails using ajax or flash.
I know it's nice to protect against CSRF, but couldn't I just check the referer or something instead?
|
I'm asking this because I feel that it's making my life overly complicated when I start communicating with rails using ajax or flash. I know it's nice to protect against CSRF, but couldn't I just check the referer or something instead?
| |||
|
feedback
|
|
Many users deactivate their referer, mostly not by choice. Using protect from forgery is the only solution to protect you against CSRF. In your controller, you add :
This will deactive the token verification for the create action in the controller where you've added the filter. | |||
|
feedback
|