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 know this is a duplicate, however, I've tried pretty much everything suggested in the other questions.

I'm currently getting a redirect loop because getUser is always returning 0, even after approving the app.

Code:

public function auth() {
    $user = $this->facebook->getUser();

    if ($user) {
        $user = $this->facebook->api('/me');
        if (!$this->Users->getByID($user["id"])) {
            $this->data->needsRegister = true;
        } else {
            $toSetInSessions = new stdClass();
            $toSetInSessions->authed = 1;
            $dbUser = $this->Users->getByID($user["id"]);
            foreach ($dbUser as $key => $value) {
                $toSetInSessions->user->$key = $value;
            }
            $this->session->set_userdata($toSetInSessions);
            redirect("/");
        }
    } else {
        $params = array('scope' => 'email,read_friendlists');
        if ($_SERVER['HTTP_USER_AGENT'] != "facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)") {
            redirect($this->facebook->getLoginUrl($params));
        }
    }

    $this->load->view('header', $this->data);
    $this->load->view('auth', $this->data);
    $this->load->view('footer', $this->data);
}

Here is the screenshot of my settings page for this App.

https://dl.dropbox.com/u/6647629/facebookapp.png

Sometimes it does work, but most of the time it doesn't.

share|improve this question

1 Answer

up vote 2 down vote accepted

Found the solution here: http://www.galalaly.me/index.php/2012/04/using-facebook-php-sdk-3-with-codeigniter-2-1/

Had to add:

    parse_str($_SERVER['QUERY_STRING'], $_REQUEST);
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.