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 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...

share|improve this question
if you check with a tool like FireCookie, do the fb cookies appear? – ncuesta Mar 14 '11 at 17:46
yes, the cookie appears – SebastianM Mar 14 '11 at 18:05
what i've noticed: in my first request the facebook cookie looks like this: %22uid%3D1051577557%26access_token%3D197242180293.... the second ajax request: the request cookie looks like this: "0=%7B&100=D&101=T&102=W&103=t.... – SebastianM Mar 14 '11 at 18:38

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.