I am login with the facebook using the javascript sdk .Once the user is loggedin then in server side i am using this code to fetch the user details ,but it is not create the session,but in javascript it is created the session.
This is the my javascript code
$('body').delegate(".fblogin","click",function(){
FB.init({appId: '', xfbml: true, cookie: true,oauth : true,});
FB.login(function(response) {
if (response.authResponse) {
console.log('Welcome! Fetching your information.... ');
FB.api('/me', function(response) {
console.log('Good to see you, ' + response.name + '.');
});
} else {
console.log('User cancelled login or did not fully authorize.');
}
});
once the user is loggedin then i am call the ajax function to get the friends but it is not creating the session in php side.
the PHP code is
if(!$this->facebook->logged_in()){
echo '<li class="fblogin"><img src="http://naveen/app/assets/img/connect-with-facebook.png" class="ac_even"></li>';
}
else{
$this->load->library('facebook');
$fbfriends = $this->facebook->call('get', 'me/friends');
$friends=$fbfriends->data;
}
Every time it shows the fb login image.
Can any body help how to solve this problem. I am not very well in english.If any mistakes is there excuse me.