Rails 3 ActionDispatch::Cookies::CookieOverflow
ActionDispatch::Cookies::CookieOverflow (ActionDispatch::Cookies::CookieOverflow): Problem in rails 3 devise.
The problem is withsession["devise.facebook_data"] = env["omniauth.auth"]
. Twitter's response contains anextra
section that is very large and does not fit in the session. One option is to storeenv["omniauth.auth"].except("extra")
in the session instead.
This is issue arises where we are storing more than 4K of session data.
Comments
Post a Comment