I use Following php code in my wordpress site
<?php
session_start();
require 'src/facebook.php';
include 'config.php';
$facebook = new Facebook(array(
'appId' => $app_id,
'secret' => $app_secret
));
// Get User ID
$user = $facebook->getUser();
if ($user) {
try {
$user_profile = $facebook->api('/me');
} catch (FacebookApiException $e) {
error_log($e);
$user = null;
}
}
if ($user) {
echo "loggedin";
}
else
{
echo "not loggedin";
}
?>
But even when i authenticate my app, I keep on getting not loggedin status. The above code works fine on normal app, But not in my wordpress site, I get session error, header already sent.
Please anyone tell alternative way to solve this problem.
Note: I dont want javascript