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've been trying to solve this already a lot of times but it just won't work.

Can anyone tell me what is wrong with my code? Any help would be much appreciated.

I tried to keep it simple.

It's a simple Facebook login.I created an App on developers.facebook.com I set up the url's.

I just copied what I read in the documentation, but I can't make it to work. It keeps redirecting me.

Here is my code, its a single file:

require_once("facebook/src/facebook.php");
$config = array(
  "appId" => "12345678", //NOT REAL ID OBVIOUSLY
  "secret" => "o345jew", //NOT REAL APP SECRET
  "cookie" => true
);
$fb = new Facebook($config);
$session = $fb->getUser();
if(!$session) {
  $login = $fb -> getLoginUrl();
  echo "<script type='text/javascript'>top.location.href = '$login';</script>";
  exit;
}
else {
  var_dump($session);
}
share|improve this question
There's probably a decent question in here, and I understand you are frustrated, but can you edit your question to remove the rant and off-topic chatter? – LittleBobbyTables Dec 18 '12 at 15:22
Sure: My question is that why the example Facebook provides in their SDK won't work? What you see here is basically that code without all the extra content. It's pretty simple, and I can't even figure this one out. – Opi Dec 18 '12 at 15:25
1  
1st of all, please know that "does not work" is not a useful problem description (and update your question accordingly), and 2nd of all, are you using the latest version of the SDK? – CBroe Dec 18 '12 at 15:30
Well thanks, but I described the problem in my first post. What else should I provide with it? This is a simple login example Facebook Documentation provides and it doesn't work. – Opi Dec 18 '12 at 15:35
Also yes I have the latest SDK – Opi Dec 18 '12 at 15:37

closed as not a real question by Igy, false, Bryan Crosby, Linger, Graviton Dec 24 '12 at 4:30

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

I had a similar issue, but instead of setting a config variable, I have tried sending an array, which worked without any issues. But since it is a definition, you should place it before the headers.

<?
define('YOUR_APP_ID', 'TYPE_YOUR_ID_HERE');
require 'facebook.php';
$facebook = new Facebook(
    array(
    'appId'  => YOUR_APP_ID,
    'secret' => 'TYPE_YOUR_SECRET_HERE',
    )
); 
?>

And to test

<? $userId = $facebook->getUser(); 
echo $userId; ?>
share|improve this answer
Sorry but this doesn't work. I mean its the same for me. But your code is basically the same as mine, just copying what's in the config array inline? – Opi Dec 18 '12 at 15:31
I know, as I have already tried just like your code and didn't work. I don't know exactly what the problem was, yet it resolved same issue. – Doguhan Okumus Dec 18 '12 at 15:36

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