I started to program a little Facebook app. Here is the code:
<?php
require_once './fb_sdk/facebook.php';
$config = array();
$config['appId'] = 'xxxx';
$config['secret'] = 'xxx';
$config['fileUpload'] = false;
$facebook = new Facebook($config);
$session = $facebook->getUser();
if ($session != 0) {
try {
$profile = $facebook->api('/me');
} catch (FacebookApiException $e) {
error_log($e);
}
}
if ($profile) {
echo "App okay!";
} else {
$params = array(
'scope' => 'user_about_me, publish_stream',
'redirect_uri' => 'http://www.facebook.com/pages/xxx/xxxx?sk=app_xxx'
);
$loginUrl = $facebook->getLoginUrl($params);
echo "<script>top.location.href='" . $loginUrl . "'</script>";
}
?>
After allowing the app, I come to an endless redirect to the app page.
What am I doing wrong?