0

我知道这是重复的,但是,我已经尝试了其他问题中建议的几乎所有内容。

我目前正在获得一个重定向循环,因为 getUser 总是返回 0,即使在批准应用程序之后也是如此。

代码:

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

这是我的这个应用程序设置页面的截图。

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

有时它确实有效,但大多数时候它不起作用。

4

1 回答 1

2

在这里找到解决方案:http ://www.galalaly.me/index.php/2012/04/using-facebook-php-sdk-3-with-codeigniter-2-1/

不得不补充:

    parse_str($_SERVER['QUERY_STRING'], $_REQUEST);
于 2012-10-08T17:26:23.563 回答