This is the first step when a user comes to the site.
If a new user or loggedOut user comes to my site, they'll see the login button and login my site by clicking the button (This step already done by use of Javascript SDK).
If a loggedIn Facebook user comes to my site, my site will automatically log this user in (if the user has already permitted this site to use his/her Facebook information). But the problem is the code below doesn't work to check whether the user is logged in or not (This step will use PHP SDK).
Code to check whether the user is logged in or not.
require 'facebook-php-sdk/src/facebook.php'
$facebook = new Facebook(array('appId'=>'****', 'secret'=>'*****'));
$access_token = $facebook->getAccessToken();
$user_id = $facebook->getUser();
if (isset($user_id) && isset($access_token)){...direct to the user specific page...}
Can I get the access_token of a loggedIn user as above and then transfer the access_token to another php file to get user's information, like get friendlist, etc...
Can anybody help me with this? Thanks.