having added the accounts-facebook package. Im trying to login with facebook following the docs: http://docs.meteor.com/#meteor_loginwithexternalservice
Having this button click event:
Meteor.loginWithFacebook({ requestPermissions: ['email']},
function (error) {
if (error) {
return console.log(error);
}
});
And this setup on the server:
Accounts.loginServiceConfiguration.remove({
service: "facebook"
});
Accounts.loginServiceConfiguration.insert({
service: "facebook",
clientId: "389711236782370",
secret: "2wwd9c47589e3eb19e7dbgfb235b6a12"
});
Im getting a undefined client_id in the facebook login pop-up: https://www.facebook.com/dialog/oauth?client_id=undefined&redirect_uri=http://localhost:3000/_oauth/facebook?close...
Even if I use the {{loginButtons}} generated by Meteor I get the same result. I have also added the google package and its working perfectly. Thanks for any help.
{{loginButtons}}? – Rahul Mar 11 at 15:30