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 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.

share|improve this question
I don't see how you try to get the data. PS: haven't you forgotten array() around parameters? – zerkms Sep 10 '12 at 3:59
Sorry, my question is wrong,now edited – user1641601 Sep 10 '12 at 4:03
"But the problem is, I got nothing when I added code below" -- please elaborate this. What "nothing" exactly means? – zerkms Sep 10 '12 at 4:18
The problem is, $user didn't get data , meaning that, if($user) { code is not running } – user1641601 Sep 10 '12 at 4:33
could you show us facebook->GetUser() Wouldn't you need to pass along a userID or email address to tell facebook which user you want to get – ekims Sep 10 '12 at 4:41
show 3 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.