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.

I am trying to use Facebook to log a user in. My code works when I simply return true instead of a promise, but I want to use the promise in order to be able to blacklist certain users.

Without a findUserById configuration, I get this error: https://github.com/bnoguchi/everyauth/issues/344

When I add a findUserById configuration (following the example from here: https://github.com/bnoguchi/everyauth/issues/116#issuecomment-9840025), i get an infinite redirect loop and Firefox says that the redirects will never finish or something like that.

What's wrong with my setup, and how can I fix it? Thanks a bunch.

everyauth.everymodule
  .findUserById( function (id, callback) {
    console.log('foobar');
    users.findOne(id,callback);
  });


everyauth
    .facebook
    .appId('appid')
    .appSecret('secret')
    .findOrCreateUser( function (session, accessToken, accessTokenExtra, fbUserMetadata) {
        var promise = this.Promise();
        users.findOne({id:fbUserMetadata.id},function(err,user){
            if (user == null) {
                console.log('new user!');
                users.insert(fbUserMetadata,function(err,ok){
                    if (err){
                        console.log(new Error(err.message));
                    }
                });
                promise.fulfill(user);
            } else if (user) {
                console.log('old user!');
                if (user.blacklisted === true) return promise.fail('denied!');
                promise.fulfill(user);
            }
        });

        return promise;
    })
    .scope('publish_actions')
    .sendResponse(function(res,data){
        res.redirect('/play')
    });
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.