I'm using omniauth-facebook & devise and i have no idea what is the meaning of this code as provided by https://github.com/plataformatec/devise/wiki/OmniAuth:-Overview. I understand all others stuff but i have no idea why it need tht, i'm debugging 1 step by 1 step but it seems does not run the function too.
def self.new_with_session(params, session)
super.tap do |user|
if data = session["devise.facebook_data"] && session["devise.facebook_data"]["extra"]["raw_info"]
user.email = data["email"]
end
end
end
in addition,i would like to ask that i can retrieve my access token everytime the user sign in , i know it should not save the token in database, therefore actually my access token for fb can save at wer? session? but is it security issues? anyone can provide a correct direction for me ?