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 am new to OAuth and have been playing around with the Twitter API. I am able to fetch the credentials of an user after authentication by making a request to http://api.twitter.com/1/account/verify_credentials.xml. The response contains the user id, screen name etc. but not the email ID.

Is it possible at all to retrieve the email ID of the user?

Update

I believe Facebook provides this information if you specifically request for extended permissions. Is there something similar for Twitter?

share|improve this question
@Philip: :P I agree and I suspect there isn't, but I wanted to verify and report back to He Who Signs The Cheques. – Manoj Govindan Aug 30 '10 at 10:47
2  
@Philip Potter why do you say this? the email address is the key point of reference between most of the oauth providers. if you have a website with 3rd party login functionality (such as this website) and a user logs in with twitter, then only unique identifier which can be used is the user_id. if next time the user comes along and logs in with google then you have no way of knowing that this is the same user as before. however if two different 3rd party providers give an email address then we can be sure it is the same person (as long as the email address is verified by the 3rd parties) – mulllhausen Jun 29 '11 at 14:16
@mulllhausen the same person can have different email accounts anyway. Its just nicer though to have the email option. I would bake into this the ability to pair multiple accounts together after you are authenticated through one provider instead of relying on the email address which twitter isn't supporting. I'm just saying roll with what you have. – zipstory.com Mar 11 at 2:44

3 Answers

up vote 60 down vote accepted

The user's email address can not be retrieved via the API. This is a deliberate design decision by the API team.

share|improve this answer
7  
Can we file it as bug, I am extremely in need of email address of authenticated user? – Jignesh Brahmkhatri Aug 24 '11 at 10:16
5  
Too bad and as you have said, a deliberate decision. If you are autheticating someone and have your own user database, you need to check if an existing user (with the same e-mail) already exists. – KeyneON Nov 12 '11 at 17:59
4  
@JigneshBrahmkhatri I had the same issue with my existing User model in my application which required an e-mail address. I fixed that by going the extra step and show the user a form to complete the missing info. – Kenny Meyer Jan 30 '12 at 19:59
8  
@KennyM. That's not very secure, I could just type in the email of some account that isn't mine and be paired to that account... – Brian Graham Apr 12 '12 at 16:28
show 6 more comments

For OutsourceFactor, which is written in Python / Django, I get the username via oAuth1, then construct an email as "username@twitter.com" which is guaranteed to be unique throughout twitter. Then I hash it to get a nice UUID to be used and associated with my local user account. Same thing for Yahoo. Google and Facebook use oAuth2 and they give me the email address on request which is nice.

To ensure multiple social associations with a single account, I allow social account associations ONLY after the user has locally created an account and is logged in.

So, you have to create an account first (local account), then you can use any of the social oAuth providers to ease your future logins. This is the best bang for the buck for my site.

Anyways, you get some unique form of ID from twitter. So just use it. You can ask for an email address later or before the association.

share|improve this answer
Brilliant idea! +1 – Connell Watkins Oct 23 '12 at 15:27

I fully believe this to be true however it appears some people have either found a way anyone have any idea. more info here Access to Twitter user's email? (connect.me and fullcontact.com appear to have this functionality)

share|improve this answer

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.