All Questions
5 questions
2
votes
0
answers
448
views
Devise InvalidAuthenticityToken
I am trying to create an authentication system with devise. When I try to login with a post request, without ajax, it gives me the "ActionController::InvalidAuthenticityToken" Error.
I've seen that ...
0
votes
1
answer
75
views
API skips authenticity verification with versionist gem
I am trying to implement verify authenticity for my Rails app, which seems to be a Rails feature
And can't figure out where the callback is failing...
So here is my applicaiton controller:
class ...
7
votes
1
answer
752
views
Multiple tab logout leads to InvalidAuthenticityToken on subsequent login
I've got an app that uses Devise for authentication. The login fields are on the homepage. If I open two tabs (Tab A and Tab B, and then log out of each manually (first Tab A, then Tab B), then return ...
3
votes
1
answer
973
views
Random CSRF token authenticity errors
I am getting intermittent CSRF token authenticity errors. Specifically, it occasionally happens when I submit a regular form via POST. I can get pass this error if I just go to a few other random ...
1
vote
2
answers
681
views
CSRF protection and cross site form access
I aw working on cross site authentication (some domains have got common authentication). So I want to send authentication data (login, password) to main domain from others.
How should I use ...