I'm using OmniAuth with Rails 3.1.4 and I'm trying to allow already authenticated users to associate multiple OpenID providers with their account.
As an unauthenticated user, signing in with OpenID works fine. As an authenticated user, when I try to sign in with a different oid provider, when the callback method is executed, it just looks like I wasn't previously authenticated.
To me it just looks like the controller gets executed before sessions are initialised (or sessions are completely skipped).
What could it be?
protect_from_forgeryseems to fix this, I'm not sure why though and how else I could fix it. – Andrei Serdeliuc Feb 22 '11 at 22:12formhelpers (form_fororform_tag)? I think that this skips the forgery protection data and Rails will automatically unset the session. Also if you're using UJS stuff be sure to include the output ofcsrf_meta_tagin your layout. – Brandon Tilley Mar 1 '11 at 17:48