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.

Does anyone know whether there is an API call which will tell me whether an application is still active? For example, I have a login system where users can sign in with their facebook credentials, so I wiould like to periodically check that the application that the login uses, is still active facebbok side.

Any Ideas?

share|improve this question
What do you mean "still active facebook side"? still added by the user? – ifaour Feb 10 '11 at 17:43

1 Answer

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;
}
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.