我知道这是重复的,但是,我已经尝试了其他问题中建议的所有内容。
我目前正在获得重定向循环,因为即使在批准应用程序之后,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
有时它确实有效,但大部分时间都没有。
答案 0 :(得分:2)
在此处找到解决方案:http://www.galalaly.me/index.php/2012/04/using-facebook-php-sdk-3-with-codeigniter-2-1/
不得不补充:
parse_str($_SERVER['QUERY_STRING'], $_REQUEST);