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'm creating a facebook app with facebook php adk 3.0.

I was able to do facebook connect login successfully as per the sample code from github. the page to which i'm redirecting after facebook login is returning my correct user id using the function $user = $facebook->getUser();

But if i go to any other page in the app, and if i call $facebook->getUser();, it's returning zero.

Seems like i should save logged in user session some where, anybody know solution for this?

share|improve this question

1 Answer

After long search i found solution for this.

From the page to which u'll be redirected after facebook login, store access token in session.

                 $access_token = $facebook->getAccessToken();
                 $_SESSION['token'] = $access_token;

Then if you want to call a fb api from any other page, set access token as below before calling the api.

            $access_token = $_SESSION['token'];
            $facebook->setAccessToken($access_token);

Hope it will help.

share|improve this answer

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.