Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 ?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.