Sto provando a scrivere la mia prima applicazione facebook.
Per ottenere il nome utente, ho provato ad usare questo codice
Codice PHP:
<?php
require 'src/facebook.php';
$facebook = new Facebook(array(
'appId' => '',
'secret' => '',
));
$user = $facebook->getUser();
$access_token = $facebook->getAccessToken();
if (
$user) {
try {
$user_friendList = $facebook->api('/me/friends?access_token='.$access_token);
$user_profile = $facebook->api('/me','GET');

} catch (
FacebookApiException $e) {
error_log($e);
$user = null;
}
}
?>
<!doctype html>
<html>
<head>
<title>test</title>
</head>
<body>
Utente <?php echo $user_profile['name']; ?>
<img src="https://graph.facebook.com/<?php echo $user; ?>/picture">
</body>
</html>
Ma l'unico output html è

Codice PHP:
<!doctype html>
<
html>
<
head>
<
title>test</title>
</
head>
<
body>
Utente
<img src="https://graph.facebook.com/0/picture">
</
body>
</
html>
Usando
Codice PHP:
error_reporting(E_ALL);
ottengo

Codice PHP:
Notice: Undefined variable: user_profile in
/membri/angeange/fb/test.php on line 27 ( `Utente <?php echo $user_profile['name']; ?>` )
Cosa sto sbagliando?