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.

Anyone else no longer getting popups in Safari?

Here's some sample code that does not work in Safari. It is launched by a click on link so the popup blocker shouldn't block it. Any ideas why it does?

Online example here:

http://users.telenet.be/prullen/fbtest.html

Note that this will not run through the expected behavior since it's on another domain and has an incorrect app ID. But the only thing that matters for this example is the showing of the popup.

<script type="text/javascript">
var fbLoaded = false;
var doReLogin = true;

function createAccessToken(){   
if (!fbLoaded) {
    FB.init({
    appId      : 'xxx', // App ID
    status     : true, // check login status
    cookie     : true, // enable cookies to allow the server to access the session
    xfbml      : true  // parse XFBML
    });
}

fbLoaded = true;

FB.getLoginStatus(function(response) {      
    if (response.status === 'connected') {
        getExtendedAccessToken(response.authResponse);
    } else {
        FB.login(function(response) {
            if (response.status == 'connected') {
                if (response.authResponse && response.authResponse.accessToken) {
                    getExtendedAccessToken(response.authResponse);
                } else {
                    alert('You cancelled login or did not fully authorize.');
                }
            } else {
                alert('To use you have to create an access token.');
            }
        }, {scope: 'read_stream'});
    }
 }, true);
}

function getExtendedAccessToken() {
}
</script>

<p style="text-align:center;"><a href="#" onclick="createAccessToken();return false;" class="connect">Connect With FaceBook</a></p>
share|improve this question
can you create a jsfiddle with all the required libraries included? – colllin Feb 5 at 19:55
@collindo couldn't get it working on jsfiddle, so placed it online on another domain. thx. – Wesley Feb 5 at 20:05

1 Answer

Can you check your settings regarding blocking pop-up window? This issue: Javascript: Facebook Login not open in Safari/ iPhone the same as you have, I guess.

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.