Get email address in buildfire app social login plugin

88 Views Asked by At

I am using buildfire social login plugin, it is creating user account via social login option but it is not giving the user email address. How can I grab the user email address on regitration.

1

There are 1 best solutions below

0
attila226 On

Using the BuildFire API, you can make can call buildfire.auth.getCurrentUser(callback).

For example:

buildfire.auth.getCurrentUser(function(err, user){
    console.log('user', user);
}

SDK