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 got a situation with the Facebook PHP API

<?php
$fb_ = new Facebook(array(
    'appId'  => 'MY_APPID',
    'secret' => 'MY_SECRET'
)); 
$userId = $fb_->getUser();
$errorMessage = null;

if ($userId) {
    try {
        $user_ = $fb_->api('/me');
        if (isset($user_['error_code'])) {
            $errorMessage = isset($user_['error_msg']) ? self::$user_['error_msg'] : 'An unknown error occurred';
            $errorMessage .= ' (' . $user_['error_code'] . ')';
            $user_ = null;
        }
    } catch (FacebookApiException $e) {
        $errorMessage = $e->getMessage();
        $user_ = null;
    }
}

if (!$user_)  {
    $loginUrl = $fb_->getLoginUrl(array(
        'scope' => 'email,publish_stream,user_birthday,user_location,publish_actions',
        'next' => 'http://www.mywebsite.com'
    ));
    echo '<a href="'.$loginUrl.'">Connect!</a>';
} 
?>

My problem is: When I click on "Connect!" I'm redirected to the facebook main page. Any idea?

share|improve this question
Including the URL to where you are being redirected would be helpful. The URL that you get is intended to take you to the Facebook login page. That is how it is supposed to work. – Colin Morelli Nov 13 '12 at 14:43
well if I click on the link I'm redirected here => facebook.com – Pierrick Aubin Nov 13 '12 at 14:56

2 Answers

The dialog url is structured like that :

$loginUrl = "https://www.facebook.com/dialog/oauth?client_id="
                . $appId . "&redirect_uri=" . $redirectUrl . "&state="
                . $_SESSION['state'] . "&scope=" . $scope;

Echo your $loginUrl and check if the string is a correct url string AND if the strucure is the same.

share|improve this answer
here is what I get: facebook.com/… but when I click on it I'm just redirected to facebook. – Pierrick Aubin Nov 13 '12 at 15:06

I've found the reason. It looks like I was using an old version of Facebook with the getSession that is deprecated.

share|improve this answer
So it is working now? – Kishor Nov 14 '12 at 9:46

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.