I'm using OmniAuth, and after logging in via Facebook, I get my omniauth.auth key, which looks like this:

user_info: 
  name: Tim Sullivan
  urls: 
    Facebook: http://www.facebook.com/...
    Website: 
  nickname: ...
  last_name: Sullivan
  first_name: Tim
uid: "123456789"
credentials: 
  token: [some token]
extra: 
  user_hash: 
    name: Tim Sullivan
    timezone: -5
    gender: male
    id: "123456789"
    last_name: Sullivan
    updated_time: 2010-12-30T00:52:39+0000
    verified: true
    locale: en_US
    link: http://www.facebook.com/...
    email: tim@myemailaddress.com
    first_name: Tim
provider: facebook

Now, according to the docs, the email should be in the user_info section, but it isn't. It is, however, in the extra/user_hash section. Since I'm stripping extra, it's not getting stored, so later on down the pipe I'm having problems. I could add it myself, but that doesn't explain why it's not there in the first place.

Why isn't email being put into the user_info section? A bug? Undocumented change?

link|improve this question

78% accept rate
1  
I think the doc is just not up to date, or it's just an error. You'll have to get it before stripping extra... I think I had to do the same, but I didnt notice the documentation was wrong at the time. I just checked what the response was. – Robin Feb 19 '11 at 3:44
That does seem odd. The code is attempting to set it in the user_info :/ github.com/intridea/omniauth/blob/master/oa-oauth/lib/omniauth/… – raidfive Feb 19 '11 at 6:13
feedback

1 Answer

up vote 0 down vote accepted

I think the doc is not up to date. I usually get it from the extra hash before removing it.

email = omniauth["extra"]["user_hash"]["email"]
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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