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.

Is it possible to check if user loged in or not into facebook without using facebook API, i could easily do it using the API, but for some reason i want to do it without the help of facebook API if and only if it's possible .

Example to clear things up:

  • loged in message "ok" or what ever.
  • not loged in redirect to facebook.com

no auth or what so ever as simple as that

is it possible ?

share|improve this question

2 Answers

Its not possible to check if the user is logged in or not without including the Facebook API.

You can easily check if logged or not using the Facebook JS SDK

share|improve this answer

You can use the existence of the code parameter as a signal as to whether the Login flow has begun or not.

$code = $_REQUEST["code"];

if(empty($code)) {
 // Redirect to Login Dialog
}

For more info: server-side-login

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.