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.

Session-state allows the retrieval of values for a given user as that user navigates through a website. It is used to maintain state across a visit within the constraints of the stateless HTTP protocol. Session-state is commonly abbreviated to session.

learn more… | top users | synonyms

0
votes
1answer
377 views

FBSession.activeSession.isOpen give me False on the 2nd ViewContrller - iOS 6

I have 2 ViewControllers. 1st ViewController I have a button to login to facebook, working right, giving me the session open state 2st ViewController I have some buttons (menu) and here, I want to ...
2
votes
1answer
554 views

unable to to open redirected page after facebook authentication

i am using facebook connect under codeigniter.after authentication i want to redirect on success method of my controller here is my controller: class Welcome extends CI_Controller { function ...
0
votes
1answer
1k views

ASP.NET MVC - Session state not passed -> breakpoints not working

Problem fixed, see below What I'm doing is this: Generate random number -> store it in a session -> pass it to facebook with the 'state' parameter of Facebook's OAuth service -> verify that the ...
0
votes
1answer
319 views

Feature Reqest? Verify User Login Status from Server Side

I have a single page web app so I'm trying to avoid redirecting when users logs in. I'd like to be able to pass the session data I get from FB.getLoginStatus() to my server, then have my server ...
3
votes
3answers
1k views

How can I hide the Code & State from showing in the address with PHP SDK 3

How can I hide this "?state=...&code=..." in the address after logging in using php sdk 3.1.1
3
votes
4answers
488 views

How do I handle multiple PHP sessions with one user on a single server?

I have few Facebook Apps hosted on a single domain on my server. It is possible that the same user may access two or more of my apps in a single session. How do I make sure that some data from one app ...
1
vote
2answers
237 views

Facebook bottom bar state

What's the best way to keep state in a bottom bar that sticks to the UI, even when different pages are navigated to? Let's say I was programming Facebook and wanted to keep all open conversations the ...
1
vote
2answers
637 views

Facebook and a stateless server

I am making a Facebook application, I want to have a stateless server.The Facebook connect requests are from the server side. So when Facebook gives me a session which has to be maintained at the ...