can any one tell me how exactly the FB APi works. Looks to be a basic question but I am really confused.
Question: I have onlogin(). so when I click the login button, I am expecting it to call this function. But in the code I pasted: I see that alert-test is printed first and than the FB.api is called.
So, it looks , onlogin is called first than the FB API ...is there a way I can call this function only once.
<body>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({appId: 'XXX', status: true, cookie: true, xfbml: true});
};
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
function checkFacebookLogin() {
FB.api('/me', function(response) {
alert("Name: "+ response.name + "\nFirst name: "+ response.first_name + "ID: "+response.id);
});
alert('test');
}
</script>
<p id="fb_login_button_1"><fb:login-button onlogin="checkFacebookLogin();" size="medium" scope="user_about_me">Sign in using Facebook</fb:login-button></p>
</body>v
My main issue is the function should be called only once....but it is getting twice
clickandonclickdo not appear in the code you have in your question, making it difficult to troubleshoot the problem. – Trott Aug 3 '12 at 1:49