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 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?

share|improve this question
where is this code sitting? a canvas app? a page tab? – Lix Jan 24 '12 at 19:44
Its a page tab. – Headpuster Jan 24 '12 at 19:47
do you have a canvas URL set in the application settings? I know that property has an undocumented effect on some features including invites - i'm always suspicious of it :P – Lix Jan 24 '12 at 19:51
1  
Solved it - found the solution: The Solution go to your App Setting > Facebook Integration > Page Tabs heading, and make sure your Tab URL has a trailing slash on it. – Headpuster Jan 24 '12 at 20:09
1  
edit your question to include your findings to help other people! In a few days you'll be able to post your own answer to your question - and accept it :) – Lix Jan 24 '12 at 20:11
show 4 more comments

1 Answer

Solved it - found the solution: The Solution go to your App Setting > Facebook Integration > Page Tabs heading, and make sure your Tab URL has a trailing slash on it.

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.