I'm trying to implement facebook login on my site with PHP SDK but even on a empty page with nothing else, it will throw Internal Server Error.
I'm following this tutorial http://net.tutsplus.com/tutorials/php/how-to-authenticate-your-users-with-facebook-connect/ but it doesn't seem to work.
<?php
require "includes/config.php";
require "facebook-php/src/facebook.php";
// Creating the facebook object
$facebook = new Facebook(array(
'appId' => 'MYAPPID',
'secret' => 'MYSECRET',
'cookie' => true
));
// Let's see if we have an active session
$session = $facebook->getSession();
if(!empty($session)) {
// Active session, let's try getting the user id (getUser()) and user info (api->('/me'))
try{
$uid = $facebook->getUser();
$user = $facebook->api('/me');
} catch (Exception $e){}
if(!empty($user)){
// User info ok? Let's print it (Here we will be adding the login and registering routines)
print_r($user);
} else {
// For testing purposes, if there was an error, let's kill the script
die("There was an error.");
}
} else {
// There's no active session, let's generate one
$login_url = $facebook->getLoginUrl();
header("Location: ".$login_url);
}
Facebook::getSession()in fblogin.php on line 12, which is undefined. – Martin Bean Jan 19 at 15:43