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'm developing a facebook app using the javascript sdk on localhost. I've added the domain to the canvas url and setup my hosts file to point it to 127.0.0.7. When I go to the domain, it resolves as expected.

I've setup this domain as the canvas URL within facebook.

I have the following code and the problem is the page just continues to refresh over and over again.

FB.init({ 
    appId:'XXXXXXXXXXX', cookie:true, 
    status:true, xfbml:true 
});

FB.Event.subscribe('auth.login', function() {
    window.location.reload();
});

$('.logout_fb').click(function(){
    FB.logout(function(){
        window.location.reload();                  
    });
});

Any ideas what the problem could be?

Thank you!

share|improve this question

1 Answer

Facebook needs to be able to reach your web server. Does it work when you host it on an external server?

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.