Get Users Email Address Using Firebase Twitter Simple Login

I am trying to pull out the email address of users after authentication with Firebase Simple Login Twitter Auth. Now I get tons of user information, but not their email address. I understand that using Facebook or Google+ you set the resolution, for example

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

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

+6
source share
1 answer

As Sarah pointed out in the comments, there is no way to get users email using Firebase SimpleLogin Twitter. However, you can use Facebook or Google +.

+5
source

Source: https://habr.com/ru/post/972739/


All Articles