Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Login with Facebook - 'Something went wrong' #115

Open
FBosler opened this issue Apr 25, 2017 · 1 comment
Open

Login with Facebook - 'Something went wrong' #115

FBosler opened this issue Apr 25, 2017 · 1 comment

Comments

@FBosler
Copy link

FBosler commented Apr 25, 2017

When clicking on the Facebook button I do get the very non-descriptive message that something went wrong.
I am assuming that's because I have not provided my facebook AppId and and App Secret.
Where does one do that?

@ensemblebd
Copy link

ensemblebd commented Dec 27, 2017

meteor add service-configuration

ServiceConfiguration.configurations.upsert(
    { service: "google" },
    { $set: { clientId: "123456790.apps.googleusercontent.com", secret: "XXXEXTRAHASHYXXX" } }
);
// note:  see also ----:   let fbconfig = Meteor.settings.facebook;
ServiceConfiguration.configurations.upsert(
    { service: "facebook" },
    { $set: { appId: "1234567890", secret: "abc123LEGITHASHY321cba" } }
);

Reference: https://gist.github.com/yhagio/dcb24b7a74bd21d02838

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants