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 have an app as admin, everything works as a tester user - none!

my code is:

var fbAsyncInit = function() {

    FB.init({
        appId  : [APP_ID],
        status : true, // check login status
        cookie : true, // enable cookies to allow the server to access the session
        xfbml  : true,
        oauth  : true
    });


FB.login(function(response)
{
    if (response.session)
    {
        if (response.perms)
        {
            alert('user is logged in and granted some permissions: ' + response.perms);
        }
        else
        {
            alert('logged in but didnt grant permissions');
        }
    }
    else
    {
        alert('not logged in');
    }
},
{scope:'publish_stream'});

} the console log response is:

Object {authResponse: undefined, status: "not_authorized"} 

and the tester user is always get the not logged in alert

i really don't know what to do with the setting so it will work

share|improve this question

1 Answer

up vote 0 down vote accepted

Try calling FB.Login through onclick event. i.e put FB.login inside some javascript function and call that function onclick of some button. Direct call to FB.login would be blocked by pop up blocker.

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.