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>";
}
?>
&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