Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
1  
Have you tried setting up Facebook login using the configuration popup provided by {{loginButtons}}? – Rahul Mar 11 at 15:30
Hi Rahul, im not getting the usuall configuration popup from the button. It shows as if it were configured already with the undefined client_id url. Its strange. A "Meteor reset" also doesn't help. – Vindberg Mar 12 at 8:55

1 Answer

Changing clientId to appId works!

Accounts.loginServiceConfiguration.remove({
    service: "facebook"
});
Accounts.loginServiceConfiguration.insert({
    service: "facebook",
    appId: "389711236782370",
    secret: "2wwd9c47589e3eb19e7dbgfb235b6a12"
});

Thanks to middle8media in comments: http://www.eventedmind.com/posts/meteor-customizing-login

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.