I have a problem with my app login with facebook SDK (web using codeigniter)
First, login ok with query data of user logged, but only email of user that I can't get it,
So, I added scope to $this->facebook->getLoginUrl('scope'=>'email') to get email, and then, I got email, But the problem is, I got nothing when I added code below:
$this->facebook->getLoginUrl(array('scope'=>'email','redirect_uri' => $mycurrent_url))
redirect_uri to my current_url is corrected, but failed to get data. what I want is, get all data with redirect_uri!
Please, see the code:
$user = $this->facebook->getUser();
if($user) {
try {
$user_info = $this->facebook->api('/me');
$args = $logout_url;
$data['getLogoutUrl'] = $this->facebook->getLogoutUrl($args);
} catch(FacebookApiException $e) {
echo '<pre>'.htmlspecialchars(print_r($e, true)).'</pre>';
$user = null;
}
} else {
$param = array('scope' => 'email','redirect_uri' => $mycurrent_url);
$data['getURLLogin'] = "<a href=\"".$this->facebook->getLoginUrl($param)."\">Login with facebook</a>";
}
what's wrong with this code?
thank for help in advance.
array()around parameters? – zerkms Sep 10 '12 at 3:59