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.

heres my problem.

the index.php file Code:

    <?php

    require_once ('../src/facebook.php');
    $facebook = new Facebook(array(
    'appId' => 'xxxxxxxx',
    'secret' => 'xxxxxxxxxxxxxxxxxxx',
    'cookie' => true,
      ));
      $session = $facebook->getSession();
      print_r($session);
       ?>

It works fine, i do have all the $session information.

But as soon as i call index.php?param=x, i dont have anymore my session information.

How come?

share|improve this question
is there any parameter specifically that causes this behaviour or is it for every parameter you send? – PENDO May 6 '11 at 23:33
It is for every parameter – Clement May 6 '11 at 23:51
where are you developing? facebook connect site? iframe canvas? or iframe page tab? – dragonjet May 7 '11 at 2:03
iframe camvas app – Clement May 7 '11 at 2:08

1 Answer

up vote 1 down vote accepted

I looked inside facebook.php, when you're using OAuth 2.0 that uses signed_request, it is the first source where it gets the session.

signed_request is passed to you using POST for canvas if it is enabled in advanced settings.

When you navigate to other pages using GET method like index.php?param=x, you lose the signed_request.

We had this problem before and opted to use AJAX inside our iframe to retain the signed_request in index.php and the ajax-loaded pages will generate cookie-based session because they don't have signed_request.

If you want, you can also disable OAuth 2.0 in advanced settings.

share|improve this answer
Thank you for your answer. If i do disable OAuth 2.0, I will just lose the parameters of &session too. So the only way is to use AJAX and remainin the same page without redirecting? Is there anything more simplier? I don't want todeploy the whole AJAX librairy in fact. – Clement May 7 '11 at 9:27
then you might wanna store the signed_request on a session variable. refetch it on the next page which is ?param=x. – dragonjet May 7 '11 at 10:23
yes, its what ive just done. Works fine. Thank you very much – Clement May 7 '11 at 10:56
@dragonjet, can you please descibe where to allow the signed request in the application advanced settings?? – Noor May 23 '12 at 17:25

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.