I'm beginner in cakephp and I'm trying to use the Facebook php sdk but i get conflict between cakephp auth login function and facebook sdk calling

$facebook = new Facebook(array(
    'appId'  => '123456789',
    'secret' => 'abcdefghijklmnopqrstuvwxyz',
    'cookie' => true
));
$fbuserid = $facebook->getUser();
if ($fbuserid) {
    try {
        $Uinfo = $facebook->api('/me');
    } catch (FacebookApiException $e) {
        error_log($e);
        $fbuserid = null;
    }
}
// some code here
$this->Auth->login($userdata);

this code works perfectly only if i removing facebook class calling

link|improve this question
Try to describe your problem better. "I get a conflict" isn't very helpful. Also where does $userdata come from. – ori Feb 24 at 10:29
1  
I developed a few fb apps with cakephp, and in my experience it's sometimes easier to drop Auth and just check $facebook->getUser() in AppController. – ori Feb 24 at 10:33
1  
Thanks for replies, i cut the facebook calling code from function, and put it in beforefilter() function, this work fine – Mostafa Feb 24 at 12:37
Hey thanks Mostafa, that worked for me :) I was also facing the same issue. After moving the Facebook object creation code to the AppControllers Beforefiler it start working fine. – Vijay Kumbhar Apr 22 at 19:46
feedback

2 Answers

There is a lot going on in the Facebook SDK. There is a great plugin written for CakePHP by WebTechNick over on GitHub. Maybe this will help you so you are not reinventing the wheel. Check it out here:

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

link|improve this answer
feedback

there is also facebook authenticate plugin: https://github.com/MozMorris/FacebookAuthenticate-CakePhp-Authentication-Handler

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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