I found one workaround. When using ActiveRecord to store a session, add
ActionController::Dispatcher.middleware.delete Rack::FacebookSession
ActionController::Dispatcher.middleware.insert_before(
ActionController::Base.session_store,
Rack::FacebookSession,
ActionController::Base.session_options[:key])
in the initialization file, e.g. config / initializers / session_store_fix_facebooker_session_key.rb
- he Facebooker, cookie, .