Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get Users Email Address with Firebase's Twitter Simple Login

I'm trying to pull the users email address after they authenticate with Firebase's Simple Login Twitter Auth. Right now I'm getting tons of info about the user, but not their email address. I realize with Facebook or Google+ you set the permission like

auth.login('facebook', {
  scope: 'email'
});

but I can't figure out how to do the same with Twitter.

like image 465
Tyler McGinnis Avatar asked Jul 23 '14 23:07

Tyler McGinnis


1 Answers

As Sara pointed out in the comments, there is no way to get a users email with Firebase's SimpleLogin Twitter auth. You can however with Facebook or Google+.

like image 177
Tyler McGinnis Avatar answered Oct 05 '22 12:10

Tyler McGinnis