I have a functional facebook application that use the JS SDK. I can use the JS SDK to get my users facebook ID and access token, and it seem to work fine. However, my JS script need to call some server side PHP code via JQuery AJAX, in order to make some server side related operations... but i still need an access to my user's access token on the PHP code as well. On the official facebook documentation of the PHP SDK, i saw the following:
The Facebook SDK for PHP can work in conjunction with the Facebook SDK for Javascript to provide seamless session management across both the client and server-sides of an app.
To enable this functionality, ensure that when you embed and initialize the JS SDK, you set both the status and the cookie parameters of the object passed to FB.init() to true.
I followed the exact instructions as written above, but it looks like my PHP code fails to get the user's facebook ID and access token after I initialize my facebook PHP object.
What do I miss? i don't understand it, because by what the documentation say, my user's access token should be passed automatically to the PHP SDK using a cookie.
Should it be done in some other way?
Thanks!