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 am having some trouble with authentication using PHP SDK. I have downloaded "facebook.php" and "base_facebook.php" from github. Below is the code I am useing but cant figure out where I am going wrong (new to all this).

<?php
require 'facebook.php' ;
$fbconfig['appid' ] = xxx;
$fbconfig['secret'] = "xxxx";
$fbconfig['baseurl'] = "xxx";
$params = array(
'scope' => 'read_stream, friends_likes',
'redirect_uri' => 'xxx'
);
 $loginUrl = $facebook->getLoginUrl($params​);
 $logoutUrl = $facebook->getLogoutUrl();
  if(!$user)
     {
        echo "<P>You need to <a href=\"' . $loginUrl . '\">log into FB</a></p>\n";
        exit();
     }
  else
     {
         echo "<p style=\"margin-bottom:20px;\">​<a href=\"{$logoutUrl}\">Logout</​p>\n";
      }
 ?>

Any suggestions much appriciated :)

share|improve this question
What is the behavior you expect, and what is the script actually doing? – Russell Zahniser Jan 24 '12 at 12:30
I want it to simply display a "log into FB" link if the user is not loged in and a "Logout" button if they are. When I run the code I get the following PHP error "Fatal error: Call to a member function getLoginUrl() on a non-object in /xx/xx/xx/xx.php on line 20" – James Roberts Jan 24 '12 at 12:34

1 Answer

Based on this site, it looks like you need to explicitly construct your own Facebook object:

require_once("facebook.php");

$config = array();
$config[‘appId’] = 'YOUR_APP_ID';
$config[‘secret’] = 'YOUR_APP_SECRET';
$config[‘fileUpload’] = false; // optional

$facebook = new Facebook($config);
share|improve this answer
The behavior has changed, now even if I am loged in to FB the page reads "You need to log in with FB" and when I click it it takes me to facebook.com and reads "An error occurred. Please try later" – James Roberts Jan 24 '12 at 13:40
Given that $user is undefined, of course it will always prompt for login. The error sounds like something is wrong in $config - you should probably check the documentation. – Russell Zahniser Jan 24 '12 at 13:48
I see, I was under the impression that $user came from facebook.php. I will continue try and decipher the documentation. – James Roberts Jan 24 '12 at 14:03
I cant find anything in the documentation that helps :( – James Roberts Jan 24 '12 at 14:18
@JamesRoberts I am having the same error too... – Nyxynyx Feb 17 '12 at 15:48

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.