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.

Am using below code to check whether the user is logged in or not to Facebook.

<?php

// Awesome FB APP 
// Name: MyAPP 

require_once 'facebook.php';// this line calls our facebook.php file that is the 
//core of PHP facebook API
// Create our Application instance.

$facebook = new Facebook(array(

  'appId' => '250941738370233',

  'secret' => 'xxx',

  'cookie' => true,

)); // all we are doing is creating an array for facebook to use with our 

$user = $facebook->getUser();
echo $user;
//app id and app secret in and setting the cookie to true
if($user){
try {
  $user_profile = $facebook->api('/me');

} catch (FacebookApiException $e) {

  error_log($e);
  $user=null;

} // this code is saying if the session to the app is created use 
}
//the $me as a selector for the information or die

?>

But the $user is responding 0 everytime. Am badly stuck at this point. Can someone help me out here.

share|improve this question
3  
Don't post your application secret publicly – phwd Jan 20 at 21:10
Yeah, read the FB OAuth documentation for why this is particularly scary. developers.facebook.com/docs/howtos/login/login-as-app. Once your app secret is known, they can get an access token that allows them to modify any of your app's settings. – Erik Nedwidek Jan 20 at 21:35
Thanks to the StackOverflow moderators or devs who have deleted that revision (I flagged this question) ;) – ComFreek Jan 21 at 19:05

2 Answers

Am using below code to check whether the user is logged in or not to Facebook.

I’m suspecting that’s your problem right there.

You can not check if any user visiting your app is logged into Facebook – you will only get information about a user, if they have connected to your app before. And since I see nothing like it in your code, I assume you did not trigger that in any way before.

So please, start reading docs here: https://developers.facebook.com/docs/technical-guides/login/

share|improve this answer

Getting a 0 is to be expected. You should, on getting that, be redirecting the user to a login url. If you do that, the user will get one of those App authorisation screens you have seen, after which they will be redirected to whatevef url you have specified.

Check out the links provided, but also take a peek at http://www.facebookanswers.co.uk/?p=229 as I provide some examples there.

The example in my link really needs updating but if you look you will see that it checks to see if getuser returns false, and if so jumps to a login page.

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.