我正在尝试使用php sdk构建我的第一个Facebook应用程序。 为了获得用户名,我尝试了这段代码
<?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>
但我唯一得到的是html输出
<!doctype html>
<html>
<head>
<title>test</title>
</head>
<body>
Utente
<img src="https://graph.facebook.com/0/picture">
</body>
</html>
使用error_reporting(E_ALL);
我正在
注意:未定义的变量:user_profile in 第27行(
Utente <?php echo $user_profile['name']; ?>
)/membri/angeange/fb/test.php
我做错了什么?
答案 0 :(得分:0)
我认为您使用的SDK已被弃用。
访问developers.facebook.com并查看可用的新版本。