I try to developp a Facebook application in which user must be connected to. I read a lot about the Facebook documentation and this platform, but I didn't succeed to find a solution.
Here is my code :
<?php
require '../src/facebook.php';
$facebook = new Facebook(array(
'appId' => '###',
'secret' => '###',
));
// See if there is a user from a cookie
$user = $facebook->getUser();
if ($user) {
try {
// Proceed knowing you have a logged in user who's authenticated.
$user_profile = $facebook->api('/me');
} catch (FacebookApiException $e) {
error_log($e);
$user = null;
}
}
?>
<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">
<head> ... </head>
<body>
<?php if ($user == "") //User not connected { ?>
<p class="FB_button"><fb:login-button perms="email,offline_access,publish_stream,status_update" show-faces="true">Se connecter</fb:login-button></p>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId: '<?php echo $facebook->getAppID() ?>',
cookie: true,
xfbml: true,
oauth: true
});
FB.Event.subscribe('auth.login', function(response) {
window.location.reload();
});
FB.Event.subscribe('auth.logout', function(response) {
window.location.reload();
});
};
(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);
}());
</script>
<?php } else { // User connected } ?>
This code works with Chrome and IE. After user click on the FB Connect button, the page is reloaded and user connected. But on Firefox i've got a pop-up that says “To display this page, Firefox must send information that will repeat any action (such as a search or order confirmation) that was performed earlier.” I need to reload my page to get connected with firefox.
I read on this question, but the solution doesn't work with me : Firefox Only: FB.login() called before FB.init()
Do you have any idea ? Thanks.