Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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);  
}  
share|improve this question
Check your error log for fatal errors. That will give you the file and line number of where the problem is. – Martin Bean Jan 19 at 15:33
@MartinBean As I'm on debian, where could I find the log? Apache? – Christian Jan 19 at 15:35
It’ll be the Apache error log, yes. As for the location: bit.ly/XmZeZx – Martin Bean Jan 19 at 15:40
Well there’s the answer. It’s telling you: you’ve called Facebook::getSession() in fblogin.php on line 12, which is undefined. – Martin Bean Jan 19 at 15:43
@MartinBean How's that possible as i've called in the facebook sdk and it does exist? – Christian Jan 19 at 15:44
show 1 more comment

1 Answer

up vote 2 down vote accepted

I think the problem is, the tutorial you’re using is maybe using an outdated version of the Facebook PHP SDK that used the getSession() method which no longer exists in newer versions of the SDK.

The Facebook PHP SDK is available on GitHub, and has an example on how to authenticate with PHP:

<?php

require 'facebook-php-sdk/src/facebook.php';

$facebook = new Facebook(array(
  'appId'  => 'YOUR_APP_ID',
  'secret' => 'YOUR_APP_SECRET',
));

// Get User ID
$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;
  }
}

if (!$user) {
  header('Location: ' . $facebook->getLoginUrl());
  exit;
}

Hope that helps.

share|improve this answer
Same internal server error. [Sat Jan 19 17:52:52 2013] [error] [client xx] PHP Warning: include(): Failed opening 'facebook-php-sdk/src/facebook.php' for inclusion (include_path='.:/usr/share/php:/usr/share/pear') in /websites/xx/fblogin.php on line 5 [Sat Jan 19 17:52:52 2013] [error] [client xx] PHP Fatal error: Class 'Facebook' not found in /websites/xx/fblogin.php on line 7 – Christian Jan 19 at 15:57
1  
It’s not the same error: this one is a bad include path, the other one was a call to an undefined method. It’s because you’ve just copied-and-pasted my code directly. You need to tweak it for your application. In this instance, you need to change the path in the require() call. – Martin Bean Jan 19 at 15:58
Okay, thanks. Works fine now! – Christian Jan 19 at 16:20
Glad you got there in the end :) – Martin Bean Jan 19 at 16:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.