Hey guys, need a little help here … I am try to access from Facebook a little more than public_profile and email with the following code …
' click #facebook-login': function(event) {
var permissions = ['email', 'user_education_history', 'user_location', 'user_website', 'user_work_history'];
Meteor.loginWithFacebook({
requestPermissions : permissions
}, function(err){
if (err)
throw new Meteor.Error("Facebook login failed");
if(Meteor.user().firstLogin) {
Router.go('/fbRegister');
}
});
},
The permission are asked for when I click the Login button and as an Admin I allow these permissions and I double checked on Facebook that the permissions are allowed. But they do not show up in the Meteor.user().
How can access these additional permissions??
Thanks