I'm starting a new Rails 3 app using Omniauth for authentication via Facebook, Twitter and Google. I can easily get the user's avatar from Facebook and Twitter, but can't find a way to retrieve it from Google, if existent.

Here's the code I use to build the authentication hash:

omniauth['user_info']['email'] ? @authhash[:email] =  omniauth['user_info']['email'] : @authhash[:email] = ''
omniauth['user_info']['name'] ? @authhash[:name] =  omniauth['user_info']['name'] : @authhash[:name] = ''
omniauth['uid'] ? @authhash[:uid] = omniauth['uid'].to_s : @authhash[:uid] = ''
omniauth['provider'] ? @authhash[:provider] = omniauth['provider'] : @authhash[:provider] = ''

On Twitter and Facebook this next line gets the avatar or sets to the default if not provided:

omniauth['user_info']['image'] ? @authhash[:image] =  omniauth['user_info']['image'] : @authhash[:image] = 'avatar.jpg'

This doesn't work on Google and I couldn't find any documentation on that.

Any ideas?

Thanks a lot!

link|improve this question

60% accept rate
2  
From the Omniauth documentation: "Google is very strict about keeping authorization and authentication separated. They give no endpoint to get a user's profile directly that I can find. We can get their name and email out of the contacts feed, however." So it looks like I won't be able to do that. Maybe only with Google+ integration. – rapcal Aug 12 '11 at 22:07
feedback

1 Answer

Try 'Omniauth Google OAuth2 Strategy' in which a commit states:

Returns name, first_name, last_name, image, email in info with :scope => 'userinfo.email,userinfo.profile'

You can view the commit here

link|improve this answer
Thanks for your answer! Unfortunately I've abandoned Google login support at this project, so I won't be able to test if now Omniauth is able to get the profile pictures. Being so, I can't accept your answer as correct, but I've upvoted it. Thanks again! – rapcal Dec 15 '11 at 18:02
1  
No worries. Good luck with whichever solution you pursue. – Lảdy Linx Jan 11 at 3:55
feedback

Your Answer

 
or
required, but never shown

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