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.

the facebook javascript sdk login dialog just flashes (i.e shows then hides) if the user is already logged into FB. Is there anyway to stop this from happening or is my code below not quite right?

<div id="fb-root">
</div>
<script type="text/javascript" src="https://connect.facebook.net/en_US/all.js"></script>

<script type="text/javascript">
    window.fbAsyncInit = function () {
        FB.init({ appId: 'XXXXXXX', status: true, cookie: true, xfbml: true });
    };
    function connectToFB() {
        FB.login(function (r) { alert('connected'); }, { scope: 'user_photos' });
    }
</script>

<input type="button" value="connect" onclick="connectToFB();" />
share|improve this question

1 Answer

up vote 2 down vote accepted

You should check if the user is logged in with getLoginStatus() first. Here is the official Facebook Documentatin: FB.getLoginStatus

share|improve this answer
cheers that worked – MakkyNZ Feb 22 '12 at 12:02

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.