I followed the steps here and was running into some problems in merging the accounts
Based on the instructions, I added the following method to my ApplicationController
def after_sign_in_path_for(resource)
# Merge data from Facebook with her current account
if session["facebook_data"] && current_user.facebook_uid.nil?
current_user.facebook_uid = session["facebook_data"]["uid"]
current_user.save(:validate => false)
end
# Countermeasure against session fixation
session.keys.grep(/^facebook\./).each { |k| session.delete(k) }
super
end
However, I'm getting a null session["facebook_data"] in the ApplicationController, even though I'm seeing the correct session value in the callback app/controllers/users/omniauth_callbacks_controller.rb that calls this method:
class Users::OmniauthCallbacksController < Devise::OmniauthCallbacksController
def facebook
user = User.find_for_facebook_oauth(env["omniauth.auth"], current_user)
if user && user.persisted?
flash[:notice] = I18n.t "devise.omniauth_callbacks.success", :kind => "Facebook"
sign_in_and_redirect user, :event => :authentication
else
session["facebook_data"] = env["omniauth.auth"]
redirect_to new_user_session_url # this redirect invokes the after_sign_in_path_for method in ApplicationController
end
end
end
What am I missing here?