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've been playing around with the Facebook PHP SDK for a site that I'd like to use Facebook's single sign in for. I've been able to login to my Facebook account from my site and successfully tested a few of the features (posting to /me, an FQL query etc.).

When generating the login URL I have set the cookie parameter to true, however I seem unable to establish a persistent session with Facebook. At the moment the Facebook login window redirects the whole website (I have not yet tested this within the webpage or a popup). The user can authorise and is returned to my site, but the session data is stored in a query string on the return URL. If this string is removed the user must reauthenticate.

Previously I have worked with the JS SDK and this has not been an issue. It's worth noting in this case that I am avoiding using the FBJS (because I believe the PHP SDK is an alternative) and FBML (because it is deprecated) - I also have not implemented a cross domain communication file as this appears to be unnecessary.

I have read about conducting the authentication within an iFrame. I'm unable to find any documentation about this though.

I have considered storing the $_GET querystring in a session on my site and appending it to the website URL, or an iFrame URL, when I need to authenticate. I'm certain that this is the incorrect way to achieve what I'd like though.

Please could someone point me in the direction of some documentation regarding this. Perhaps I am mistaken in thinking I can do this without JS, or maybe I need to manually set up the session cookie? I've searched at length but have been unable to find any documentation that describes this specifically.

Thanks for any help!

share|improve this question
The PHP sdk should save the session information in the fb_APPID cookie, its in the code... What issues are you having? – BeRecursive Sep 16 '10 at 8:55
I found that a cookie was set up automatically, in a file called something like fbs_12314235. And this cookie was destroyed when you used Fb's log out link – jakenoble Sep 16 '10 at 9:12
That is correct behaviour – BeRecursive Sep 16 '10 at 15:07
I see; the getSession function attempts to load the session from $_COOKIE if it cannot retrieve it from the $_REQUEST array (line 335). For some reason though, Facebook is not setting a cookie and my $_COOKIE array remains empty, so the problem is presumably setting the cookie. Could anyone link some documentation that describes this process? Thanks! – Ashley Sep 17 '10 at 7:07

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.