Meteor: Facebook username not showing
I have a Facebook login that runs in my app and user page to display the most important details of the user. When I log in using a password, then the following code:
user: function(){
return Meteor.user().username
},
from:
<h1>Welcome {{user}}</h1>
return the username. When I logged in using my Facebook username, the username is blank.
How can I access the current user's username when logged in with Facebook?
thank
+3
source to share
2 answers