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 trouble using the PHP SDK for authentication. The effect I am trying to get is whene a user visits the site if they are loged in with FB they see "Logout" which loggs them out when clicked but if they are not logged in when they arrive they should see "You need to log in with FB" which loggs them in. The effect I am currently getting is that the site displays the "You need to log in with FB" even if the user is already logged in, whene this is clicked the user is taken to facebook.com with an error message displayed reading "An error occurred. Please try later". Im sure I must be missing something in my code but cant figure out what, I am fairly new to FB development. Please see my code below. Any help much appriciated.

<?php

require_once("facebook.php");


$user = $facebook->getUser();



  $config = array();
  $config[‘appId’] = xxx;
  $config[‘secret’] = '{secret}';

  $facebook = new Facebook($config);



$fbparams = array(
  'scope' => 'read_stream, friends_likes',
  'redirect_uri' => 'xxx'
);



session_start();



$loginUrl = $facebook->getLoginUrl($fbparams);
$params = array( 'next' => 'xxx' );
$logoutUrl = $facebook->getLogoutUrl($params); 




    if(!$user)
        {
            echo "<P>You need to <a href=\"{$loginUrl}\">log into FB</a></p>\n";
        }
    else
        {
            echo "<p style=\"margin-bottom:20px;\"><a href=\"{$logoutUrl}    \">Logout</p>\n";


            }

?>
share|improve this question
Please reset your secret key on your app immediately! – DMCS Jan 26 '12 at 13:38
Whoops, thanks for pointing that out. – James Roberts Jan 26 '12 at 13:53
There's also no need to hide the App ID, it's public information. It's the secret key that you need to protect :) – DMCS Jan 26 '12 at 14:15
Understood, thanks for the advice. – James Roberts Jan 26 '12 at 14:29
Not sure but could the problem be with the getUser()? It seems that $user is not set, is this correct? – James Roberts Jan 26 '12 at 16:41
show 2 more comments

3 Answers

Try this out

<?php

require_once("facebook.php");
$user = $facebook->getUser();

$config = array();
$config[‘appId’] = xxx;
$config[‘secret’] = '{secret}';

$facebook = new Facebook($config);

$fbparams = array(
'scope' => 'read_stream, friends_likes',
'redirect_uri' => 'xxx'
);

$loginUrl = $facebook->getLoginUrl($fbparams);
$params = array( 'next' => 'xxx' );
$logoutUrl = $facebook->getLogoutUrl($params); 

<?php if ($user) { ?>
<p><a href="<?=$logoutUrl?>">Logout</a></p>
<?php } else { ?>
  <p><a href="<?=$loginUrl?>">Click here to View Your Stalker of the Day</a></p>
<?php } ?>
share|improve this answer

You can not call $facebook before creating the instance, This code should work:

<?php
session_start();
require_once("facebook.php");

$config = array();
$config[‘appId’] = xxx;
$config[‘secret’] = '{secret}';

$facebook = new Facebook($config);
$user = $facebook->getUser();


$fbparams = array(
'scope' => 'read_stream, friends_likes',
'redirect_uri' => 'xxx'
);

$loginUrl = $facebook->getLoginUrl($fbparams);
$params = array( 'next' => 'xxx' );
$logoutUrl = $facebook->getLogoutUrl($params); 

if(!$user)
    {
        echo "<P>You need to <a href=\"{$loginUrl}\">log into FB</a></p>\n";
    }
else
    {
        echo "<p style=\"margin-bottom:20px;\"><a href=\"{$logoutUrl} }\">Logout</p>\n";


        }

?>
share|improve this answer
Thanks for the replies. I have tried both mothods but I am still getting the same result. Could it maybee have something to do with the "redirect_uri" as I am specifying the current url by means of "xxx.com/index.php"; for both the logon and logout? – James Roberts Jan 27 '12 at 11:16
Whene I echo $user it returns 0. – James Roberts Feb 14 '12 at 13:27
$params = array( 'next' => 'xxx' );

is deprecated SDK, use

$params = array( 'redirect_uri' => 'xxx' );

instead.

share|improve this answer

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.