I finally got my facebook login working, so I can retrieve information from a user
<?php
session_start();
require_once 'facebook.php';
$facebook = new Facebook(array(
'appId' => '19582352346693',
'secret' => '44c21dde8d502ega23g287a751dea',
'cookie' => true,
));
$user_id = $facebook->getUser();
?>
<html xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<title>Picture</title>
</head>
<body>
<?php
if($user_id) {
// We have a user ID, so probably a logged in user.
// If not, we'll get an exception, which we handle below.
try {
$test = null;
$user_profile = $facebook->api('/me','GET');
//$test = $user_profile['id'];
echo "id: " . $user_profile['id'];
} catch(FacebookApiException $e) {
// If the user is logged out, you can have a
// user ID even though the access token is invalid.
// In this case, we'll get an exception, so we'll
// just ask the user to login again here.
$login_url = $facebook->getLoginUrl();
echo 'Please <a href="' . $login_url . '">login.</a>';
error_log($e->getType());
error_log($e->getMessage());
}
} else {
// No user, print a link for the user to login
$login_url = $facebook->getLoginUrl();
echo 'Please <a href="' . $login_url . '">login.</a>';
}
?>
</div>
</body>
</html>
All this code, will give me a login, since I am not logging in to the APP(Authenticated). When I press the button, I can then see my information, since I echo it.
When I then press another button on my page:
<form action="<?php echo 'single_picture.php?argument=' . $picture_id ?>" method="post">
<input type="submit" name="submit" value="Vote!">
</form>
I open the same page again, but the login button just shows up again and forgot all about I am logging in.
I thought the if / else was checking if I am logging in.
I also tried printing out my access token
$access_token = $facebook->getAccessToken();
I then put it into: http://developers.facebook.com/tools/debug
This says the access token is valid for an hour
What am I doing wrong?