I am trying to fetch user data from facebook using facebook PHP SDK. (I am developing the site in codeigniter). I am able to fetch all the basic data. But I am not able to fetch those data which need access token. I am taking the access token parameter from the logout url by parsing the url. But that token is not working. Is it different from the main access token?
This is my controller file
<?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->Facebook_model->get_data();
if((!$fb_data['uid']) or (!$fb_data['me'])) {
echo "<a href='" .$fb_data['loginUrl']. "'>Login</a>";
}
else {
$params = null;
parse_str($fb_data['logoutUrl'], $params);
$graph_url = "https://graph.facebook.com/me/music?access_token=" . $params['access_token'];
//$user = json_decode(file_get_contents($graph_url));
echo "<pre>";
print_r($fb_data);
//print_r($user);
//print_r($params);
echo "</pre>";
echo "<a href='" .$graph_url. "'>Get Music</a>";
echo "<a href='" .$fb_data['logoutUrl']. "'>Logout</a>";
}
}
}
This is my model file
public function __construct() {
parent::__construct();
$config = array(
'appId' => '130090207121542',
'secret' => 'xxxxxxxxxxxxxxxxxxxxx',
'fileUpload' => true
);
$this->load->library('facebook/Facebook', $config);
}
function get_data() {
$user = $this->facebook->getUser();
$profile = null;
if($user)
{
try {
$profile = $this->facebook->api('/me');
} catch (FacebookApiException $e) {
error_log($e);
$user = null;
}
}
$fb_data = array(
'me' => $profile,
'uid' => $user,
'loginUrl' => $this->facebook->getLoginUrl(
array(
'scope' => 'email,user_interests,user_birthday,publish_stream',
'redirect_uri' => 'http://herle.in/flutter/index.php/test/userRegistration2.html'
)
),
'logoutUrl' => $this->facebook->getLogoutUrl(),
);
return $fb_data;
}
}
EDIT:
Found a link to this question Using Facebook OAuth 2.0 - How do I fetch the access token?
But don't know whther it's going to work or not. Because I don't have any idea of getting the CODE (THE_CODE_YOU_GOT_FROM_THE_SERVER) to pass it into the url. If it's going to work then how can I get this CODE?
UPDATE 18/04/12
It's working now. In scope I was not taking permission for "user_likes" from the user.
