c# - how can i get twitter email with dotnetopenauth? -


possible duplicate:
is there way user's email id after verifying twitter identity using oauth?

i've pretty got openid working using dotnetopenauth library. 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"); 

sorry it's not possible users email address twitter.

take @ following

is there way user's email id after verifying his/her twitter identity using oauth?


Comments

Popular posts from this blog

jasper reports - Fixed header in Excel using JasperReports -

media player - Android: mediaplayer went away with unhandled events -

python - ('The SQL contains 0 parameter markers, but 50 parameters were supplied', 'HY000') or TypeError: 'tuple' object is not callable -