Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using omniauth exclusively to allow login to my website with facebook/google/twitter.

I store first name, last name, and email. However, when I raise the twitter auth hash from oauth I only get nickname, name, location,image, description and urls in the auth hash.

Is there a scope I can pass in my initializer to get the user's email and break name out into the first_name, last_name fields?

share|improve this question

2 Answers

up vote 4 down vote accepted

Twitter does not give out user emails so you will not be able to get that information from the Twitter API. Instead, you have to ask the user to type in their email address on your sign up form.

As far as splitting the name up, you'd do that once you have the hash returned using something like:

social_params ||= request.env["omniauth.auth"]
fullname = social_params["user_info"]["name"].split(' ')
first_name, last_name = fullname[0], fullname[1]
puts "first name is #{first_name} and last name is #{last_name}"

Just keep in mind that last_name could be nil if they don't have a space in their name or they didn't give a last name. This also doesn't consider the fact that many people have multiple last names in other cultures.

share|improve this answer
Thank you much. I'm not quite sure how to handle asking for the email address after the callback - I'm pretty new to rails and currently just have the session create action handle this in one swoop without user interaction. Probably another question for SO. – Rapture Jan 2 '12 at 16:22
Unfortunately, Twitter forces you to use one additional step to your sign up process by not giving out the email address. You'd have to redirect the user to a sign up form asking them for their email address or else use a different sign up service like Facebook which provides the email address if you want it to be seamless. – iWasRobbed Jan 2 '12 at 16:39
Yeah - currently I'm using Facebook and Google - I'll probably just end up dropping Twitter due to this. – Rapture Jan 2 '12 at 16:50
2  
You could always add it later with a check for if social_params["provider"] == "twitter" and redirect to a sign up form if necessary. – iWasRobbed Jan 2 '12 at 16:57
Awesome! Thanks for the tip @iWasRobbed! – Rapture Jan 2 '12 at 18:15

Well Twitter by Design will not pass you use email id.This is a deliberate design decision by the API team.

Here is same thread for your refrence

Is there a way to get an user's email ID after verifying her Twitter identity using OAuth?

share|improve this answer
Thanks - I should have searched better :/ – Rapture Jan 2 '12 at 16:23

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.