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 trying to make a login action for my Facebook App, the code is like this:

$("#btnLogin").click(function ()
    {
     FacebookLogin();

    });

....

function FacebookLogin()
    {

        FB.login(function(response) {
        if (response.authResponse) {

            top.location.href = "result.html";
        } 
        }, {scope: 'email'});
    }

When I click on the login button, the Facebook login popup is showed and after the init session this pop up is not redirecting fine, is stopped in

https://www.facebook.com/dialog/permissions.request..

I think that the problem is related to the settings security. If I disable the navigation security, the App is working fine, otherwise the "Login popup" is stopped in the url

Any idea?

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.