I'm developing a facebook component which publishes read action on facebook via open graph, i'm using both of facebook SDKs Javascript and php.
The problem is sometimes user get log-out from my website although he is logged in facebook, please i need the best practice for using both SDKs.
I'm checking if user logged in from php SDK, this a snippet of my code to show you how i'm checking
function layalina_fb_actions_object() {
$fb_api_path = libraries_get_path('facebook-php-sdk');
require_once $fb_api_path . '/src/facebook.php';
$config = array(
'appId' => variable_get('APP_ID', "371428689601356"),
'secret' => variable_get('FB_SECRET', "c1bd4018f19c7183c1fe2f7ad46d36a7"),
);
$facebook = new Facebook($config);
return $facebook;}
$facebook = layalina_fb_actions_object();
$facebook->setExtendedAccessToken();
if (!isset($_SESSION['access_token']))
$_SESSION['access_token'] = $facebook->getAccessToken();
$user = $facebook->getUser();
$module_path = drupal_get_path('module', 'layalina_fb_actions');
drupal_add_css($module_path . '/css/main.css', array('group' => CSS_DEFAULT, 'every_page' => TRUE));
if (isset($_SESSION['access_token'])) {
try {
$local_user = layalina_fb_actions_user_exists();
$user_profile = $facebook->api('/me');
//Create Query
$params = array(
'method' => 'fql.query',
'query' => "SELECT uid, name FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = me()) AND is_app_user = 1",
);
$result = $facebook->api($params);
layalina_fb_actions_render_js($facebook, $local_user);
//setcookie('fbm_' . variable_get('APP_ID', "371428689601356"), 'base_domain=.layalinamg.com', time() + 31536000, '/', '.layalinamag.com');
return theme('fbactionsbuild', array('result' => $result, 'access_token' => $_SESSION['access_token'],
'user_profile' => $user_profile, 'facebook' => $facebook, 'status' => $local_user));
} catch (FacebookApiException $e) {
watchdog('layalina_fb_actions', $e->getMessage());
return theme('fbactions_login_button');
}
} else {
return theme('fbactions_login_button');
}
And this is a javascript code
<div id="fb-root"></div>
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.init({
appId : '<?php echo variable_get('APP_ID', "371428689601356") ?>',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
oauth: true
});
};
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "http://connect.facebook.net/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);}(document));
Anyone helps please?