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);
}