Check the existence of the facebook API cookie. in the facebook api you have the facebook.php file which manages the session and cookies. This file shall be included at the beginning of every php page that uses the FB authentication.
Locate this part :
$session = $facebook->getSession();
$fb_me = null;
// Session based graph API call
if ($session) {
try {
$fb_me = $facebook->api('/me');
$fb_uid = $facebook->getUser();
} catch (FacebookApiException $e) {
d($e);
}
}
Later in your code, check whether fb_me exists, if yes then you are authenticated via FB and you can use the other variables of the API to get information about the user.
if( $fb_me )
{
echo "you are authenticated via FB API as user id:".$fb_uid;
}