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 do facebook login in cakephp. I am able to login successfully but cant retrieve user info. I am using the facebook plugin from the following link:

https://github.com/webtechnick/CakePHP-Facebook-Plugin

app controller:

 class AppController extends Controller {


var $helpers=array('Session','facebook.facebook');

//var $components = array('Session','facebook.Connect');

function beforeFilter()
{
    //$this->set('facebook_user',$this->Connect->user('email'));
}

when i uncomment the components line i get the following error:

call_user_func_array() expects parameter 1 to be a valid callback, class 'Facebook' does not have a method 'getSession' [APP\Plugin\Facebook\Lib\FB.php, line 34]

view.ctp

echo $this->Facebook->login();

how do i solve this?

share|improve this question

1 Answer

Waht cake version are you using..?

in your bootstrap:

//app/Config/bootstrap.php
CakePlugin::load('Facebook');

in your appcontroller:

public $helpers = array('Facebook.Facebook');

Bare in mind to use CAPITAL letters

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.