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 am trying to fetch user data from facebook using facebook PHP SDK. (I am developing the site in codeigniter). But it's showing me a error when I click the login url link. It's showing

ERROR

An error occurred. Please try again later.

Here is the code of C:\wamp\www\project\application\models\test\facebook_model.php

<?php
class Facebook_model extends CI_Model {

public function __construct()
{
    parent::__construct();

    $config = array(
                    'appId'  => 'API Key',
                    'secret' => 'Secret Key',
                    'fileUpload' => true,
                    );

    $this->load->library('facebook/Facebook', $config);

    $user = $this->facebook->getUser();


    $profile = null;
    if($user)
    {
        try {
            // Proceed knowing you have a logged in user who's authenticated.
            $profile = $this->facebook->api('/me?fields=id,name,link,email');
        } catch (FacebookApiException $e) {
            error_log($e);
            $user = null;
        }
    }

    $fb_data = array(
                    'me' => $profile,
                    'uid' => $user,
                    'loginUrl' => $this->facebook->getLoginUrl(
                        array(
                            'scope' => 'email,user_birthday,publish_stream',
                            'redirect_uri' => 'http://herle.in/flutter/index.php/test/userRegistration2'
                        )
                    ),
                    'logoutUrl' => $this->facebook->getLogoutUrl(),
                );

    $this->session->set_userdata('fb_data', $fb_data);
}
}

Here is the code of C:\wamp\www\project\application\contorllers\userRegistration2.php

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

class UserRegistration2 extends CI_Controller { 
function __construct() {
    parent::__construct(); 
    $this->load->model('test/Facebook_model');
}

function index() {
    $fb_data = $this->session->userdata('fb_data'); // This array contains all the user FB information

    if((!$fb_data['uid']) or (!$fb_data['me'])) {
    echo "<a href='" .$fb_data['loginUrl']. "'>Login</a>";
    }
    else {
        $data = array(
                'fb_data' => $fb_data,
                );
        print_r($data);
    }
}
}

and in libraries/facebook I have the 2 facebook PHP SDK files. i.e. Facebook.php and base_facebook.php

This is the link http://herle.in/flutter/index.php/test/userRegistration2.html and after clicking Login link it's showing the error.

share|improve this question
1  
Is the copy of libraries/facebook/facebook.php the original API file untouched? I seem to recall that it needs an edit to make it work as a CI library... – shanethehat Apr 11 '12 at 12:58
Yes it's the original SDK file. What changes I have to make? Can you guide me? – Subhra Apr 11 '12 at 13:02
It's been a while since I did it, but this looks like a pretty good guide: jondavidjohn.com/blog/2011/07/… – shanethehat Apr 11 '12 at 13:15
Another link - dannyherran.com/2011/02/… – HappyApe Apr 11 '12 at 13:26
@shanethehat I think I am following the same procedure with little difference in the code. – Subhra Apr 11 '12 at 13:27
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.