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.

in the callback of the authentication process I do:
auth_hash = request.env['omniauth.auth']

and then, I'm extracting the user id, but is it possible in the same time getting the user's name and email address?

share|improve this question

2 Answers

up vote 5 down vote accepted

You need to first get the raw data from request.env["omniauth.auth"]

  data = request.env["omniauth.auth"].extra.raw_info 
  username = data.first_name 
  email  = data.email 
share|improve this answer

yesss

u can get it by doing

     auth_hash[:info][:name] for name and auth_hash[:info][:email] for email
share|improve this answer
thanks, what is dng? – socksocket Nov 3 '12 at 13:33
edited it it was a typo – Aayush Khandelwal Nov 3 '12 at 13:35

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.