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 running into a problem with logging in to Facebook on Safari and IE. I can login just fine with Chrome and Firefox with the following code:

        var appId = 'APP ID';
    var uid;

    // Initialize the JS SDK
    FB.init({
     appId: appId,
     status: true, // check login status
     cookie: true, // enable cookies to allow the server to access the session
     xfbml: true,  // parse XFBML
     channelUrl: '//localhost:8888/photo/channel.html' // Channel File
    });
    // Get the user's UID
    FB.getLoginStatus(function(response) {
     uid = response.authResponse.userID ? response.authResponse.userID : null;
     console.info(uid);
    });

    function authUser() {
     FB.login(function(response) {
       console.info(response);
       uid = response.authResponse.userID ? response.authResponse.userID : null;
       console.info("called");
     }, {scope:'email,publish_actions'});

but when my code gets to FB.getLoginStatus on Safari and IE the response shows

authResponse: undefined
status: "unknown"

Edit: Forgot to mention that the popup that shows the permissions is not popping up in Safari and IE.

share|improve this question
How/where do you call your function authUser? – CBroe Oct 5 '12 at 9:03
I don't call it in my code. I figured that facebook took care of it. – Bryan Williams Oct 5 '12 at 18:28

1 Answer

up vote 0 down vote accepted

I didn't actually fix the problem I was able to get around it by running the app on Facebook instead of my localhost. I believe this is because when on Facebook I am already logged in.

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.