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’m having problems using the facebook-php-sdk (https://github.com/facebook/facebook-php-sdk). I’ve download all files inside “src” to my “libraries” folder.

Here’s my custom library:

<?php

if (!defined('BASEPATH'))
    exit('No direct script access allowed');

class My_library
{
    protected $_CI;
    protected $_facebook;

    public function __construct()
    {
        $this->_CI =& get_instance();
    }

    public function facebook_user_id()
    {
        $this->_CI->load->config('bloompit', TRUE);
        $this->_facebook = $this->_CI->config->item('facebook', 'bloompit');
        $this->_CI->load->library('facebook', array(
            'appId' => $this->_facebook['app_id'],
            'secret' => $this->_facebook['secret']
        ));
        return $this->_CI->facebook->getUser();
    }

    public function facebook_user()
    {
        $this->_CI->load->config('bloompit', TRUE);
        $this->_facebook = $this->_CI->config->item('facebook', 'bloompit');
        $this->_CI->load->library('facebook', array(
            'appId' => $this->_facebook['app_id'],
            'secret' => $this->_facebook['secret']
        ));
        try {
            $facebook_user = $this->_CI->facebook->api('/me');
        }
        catch (FacebookApiException $e) {
            log_message('error', $e);
            $facebook_user = NULL;
        }
        return $facebook_user;
    }

    public function facebook_login_url($redirect_uri)
    {
        $this->_CI->load->config('bloompit', TRUE);
        $this->_facebook = $this->_CI->config->item('facebook', 'bloompit');
        $this->_CI->load->helper('url');
        $this->_CI->load->library('facebook', array(
            'appId' => $this->_facebook['app_id'],
            'secret' => $this->_facebook['secret']
        ));
        return $this->_CI->facebook->getLoginUrl(array(
            'scope' => $this->_facebook['scope'],
            'redirect_uri' => $redirect_uri
        ));
    }

    public function facebook_logout_url()
    {
        $this->_CI->load->config('bloompit', TRUE);
        $this->_facebook = $this->_CI->config->item('facebook', 'bloompit');
        $this->_CI->load->helper('url');
        $this->_CI->load->library('facebook', array(
            'appId' => $this->_facebook['app_id'],
            'secret' => $this->_facebook['secret']
        ));
        return $this->_CI->facebook->getLogoutUrl(array(
            'next' => site_url()
        ));
    }
}

The facebook_login_url() seems to be correct, after login the user is redirected back to my site, so I try to get the user id using facebook_user_id(), but is always returning 0. What am I doing wrong?

share|improve this question
What version of codeigniter are you using? Older versions (pre 2.x.x) clear the $_GET superglobal and that prevents the facebook sdk to see its state and code params after the user gets redirected back to your site. – complex857 Jul 20 '12 at 6:05

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.