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 there any reason this will not work? getUser() is always returning 0.

    <!DOCTYPE HTML>
<html>
<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8">

    <title>Test</title>

</head>
<body>
<h1>php-sdk</h1>
<?php
require 'src/facebook.php';

// Create our Application instance (replace this with your appId and secret).
$facebook = new Facebook(array(

));

// Get User ID
$user = $facebook->getUser();

// We may or may not have this data based on whether the user is logged in.
//
// If we have a $user id here, it means we know the user is logged into
// Facebook, but we don't know if the access token is valid. An access
// token is invalid if the user logged out of Facebook.

if ($user) {
  try {
    // Proceed knowing you have a logged in user who's authenticated.
    $user_profile = $facebook->api('/me');
  } catch (FacebookApiException $e) {
    error_log($e);
    $user = null;
  }
}
echo "$user";
// Login or logout url will be needed depending on current user state.
if ($user) {
  $logoutUrl = $facebook->getLogoutUrl();
  echo "<a href='$logoutUrl'>Logout</a>";
  echo '<h1> INFO </h1>';
  echo "$user_profile";
} else {
  $loginUrl = $facebook->getLoginUrl();
  echo "<a href='$loginUrl'>login</a>";
}

?>

share|improve this question
When you approve permissions, facebook redirects back to your page with a code parameter (&code=.....). Did you get it? Are you viewing the file in the canvas page or not? And you should work on your accept rate too. – ori Feb 7 '12 at 21:48

closed as not a real question by DMCS, casperOne Feb 8 '12 at 15:08

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

where are your config options for instantiating the Facebook class? Also you need to login to get the user id, is the login process working?

You need to give us some more information...

If you need a place to start, I wrote a tutorial you can look at and download here: http://www.epixseo.com/index.php/facebook-php-3-3-1-and-javascript-sdk-graph-api-tutorial/

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.