i have a problem with my Symfony Facebook iFrame Canvas Application :) I use the standard facebook php sdk with Symfony 1.4.
When I first load the application on facebook everything is fine. (Cookie is loaded "fb_32983....", User logs in successfull, all ok). Even the first jQuery Ajax call is successfull.
But when i make the second ajax call, the Facebook cookie get automatically deleted. I have no idea why this happens...
I use $.ajax (GET) with jQuery 1.5.
Here's some code to use the Facebook SDK in all Modules:
class FacebookWrapper {
protected $response = null;
protected $facebook = null;
public function __construct($response) {
$this->response = $response;
$this->facebook = new Facebook(array(
'appId' => '197242180293875',
'secret' => '9885712145cbac36318058524c95ecbc',
'cookie' => true
));
$this->response->setSlot('facebook', $this->facebook);
}
public function getFbObject()
{
return $this->facebook;
}
public function getFbMe()
{
$fbme = false;
if($this->facebook->getSession())
{
try {
$fbme = $this->facebook->api('/me');
} catch (FacebookApiException $e) {
error_log($e);
}
}
return $fbme;
}
}
In my controller i use this:
class questionsActions extends sfActions
{
public function preExecute()
{
$fbwrapper = new FacebookWrapper($this->getResponse());
$this->facebook = $fbwrapper->getFbObject();
$this->me = $fbwrapper->getFbMe();
}
.....
My cookie changes from this:
uid=1051577557&access_token=1972....
to this:
0={&100=D&101=T&102=W&103...
after the first ajax call.
Thanks for your help...