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.

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

I've pretty much got OpenID working using the DotNetOpenAuth library. Now I would like to get the email.

 public ActionResult OAuth()
    {
 var twitter = new WebConsumer(TwitterConsumer.ServiceDescription, TwitterTokenManager);
        AuthorizedTokenResponse accessTokenResponse = twitter.ProcessUserAuthorization();
        if (accessTokenResponse != null)
        {
            string accessToken = accessTokenResponse.AccessToken;
            string username = accessTokenResponse.ExtraData["screen_name"];
            // email goes here ??
            CreateAuthCookie(username, accessToken);
        }
        else
        {
            return RedirectToAction("LogOn");
        }

        return RedirectToAction("Index", "Home");
share|improve this question

marked as duplicate by casperOne Mar 13 '12 at 15:06

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

Sorry it's not possible to get the users Email address from Twitter.

Take a look at the following

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

share|improve this answer

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