I'm looking to develop a Facebook application and I got stuck at a problem: on a particular computer the login is not working. On other machines where I tested, there were no problems with the following code:
window.fbAsyncInit = function() {
FB.init({
appId : 'getAppId(); ?>',
session : , // don't refetch the session when PHP already has it
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
FB.Canvas.setSize({ width: 600, height: 768 });
// whenever the user logs in, we refresh the page
FB.Event.subscribe('auth.login', function() {
window.location.reload();
});
};
(function() {
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
PHP code:
$facebook = new Facebook(array(
'appId' => 'ABC',
'secret' => 'XYZ',
'cookie' => true,
));
$session = $facebook->getSession();
$me = $facebook->api('/me');
The problem is that on most of the machines the $me variable is valid, and on a particular machine it's not. This causes the button to blink: press login (fail) , press login (fail), etc.
Do you have any ideas of how can I debug or fix this issue?
Thanks!