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 am unable to access Graph Api in other pages other than the initial page load on my facebook app.

Any ways I can access the Access Token in other pages on my app? Cause the signed_request is available only at the index page

Anyone can help with it?

share|improve this question

1 Answer

Facebook uses a $_SESSION to store all crucial information including Userid, Accesstoken etc.. Your index page obviously has a

require 'facebook.php';

Make sure you add the same line at the top of the next page. Immediately after that add a

start_session();

Now you can perform a

print_r($_SESSION);

and you will be able to see all important info that facebook has stored and you can use them. (Provided user is still logged in and token has not expired).

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.