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.

in this simple php file: (http://gist.github.com/273402)

<?php
session_start();
include_once 'libraries/facebook/facebook.php';

//$fb_user=$facebook->get_loggedin_user();
?>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<script src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US" type="text/javascript"></script>
<script type="text/javascript">
    FB.init("PUBLIC_KEY", "http://localhost/xd_receiver.htm",{"reloadIfSessionStateChanged":true});
</script>
</head>
<body>
<h1>User index</h1>
<fb:login-button onlogin="window.location.reload(true)"></fb:login-button>
<fb:profile-pic uid="loggedinuser" size="square" facebook-logo="true"></fb:profile-pic>
<?php
$facebook = new Facebook("PUBLIC_KEY","SECRET");
    if($facebook->get_loggedin_user()){
      echo "logged";
    } else {
      echo "not-logged";
    };

    ?>
</body>
</html>

i cannot get $facebook->get_loggedin_user(), but FBXML do render the profile pic, why?

how can i get the user info in PHP, not in JS?

share|improve this question

2 Answers

up vote 1 down vote accepted

it seems you cannot use localhost as domain/test platform.

change localhost to a valid domain in fb application settings, and change the http://localhost/xd_receiver.htm to sth valid

share|improve this answer
3  
actually, you can edit host file to do development in localhost. map test.com to 127.0.0.1, and in fb application settings, change the domain and application callback to test.com will do the job – joetsuihk Jan 10 '10 at 9:41

you can retrieve many information using "users_getInfo":

$user_details=$fb->api_client->users_getInfo($fb_user, array('last_name','first_name','pic_square'));

But you first have to get the login to work. Did you create the application on facebook? did you copy the xd receiver? I don't know if localhost is allowed.

Here is a tutorial I wrote.

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.