我正在尝试将 Facebook 应用程序(嵌入小型多人 Flash 游戏的 PHP 脚本)从旧的 FBML 重写为新的 iFrame 类型,它有点工作:
<?php
require_once('facebook.php');
define('FB_API_ID', '182820975103876');
define('FB_AUTH_SECRET', 'XXX');
$facebook = new Facebook(array(
'appId' => FB_API_ID,
'secret' => FB_AUTH_SECRET,
'cookie' => true,
));
if (! $facebook->getSession()) {
printf('<script type="text/javascript">top.location.href="%s";</script>',
$facebook->getLoginUrl(
array('canvas' => 1,
'fbconnect' => 0,
#'req_perms' => 'user_location',
)));
} else {
try {
$me = $facebook->api('/me');
$first_name = $me['first_name'];
$city = $me['location']['name'];
$female = ($me['gender'] != 'male');
$fields = $facebook->api('/me', array(
'fields' => 'picture',
'type' => 'large'
));
$avatar = $fields['picture'];
# then I print swf tag and pass first_name;city;avatar to it
} catch (FacebookApiException $e) {
print('Error: ' . $e);
}
}
?>
但我认为获取用户个人资料图片的调用会导致我的脚本执行第二次 CURL 获取,这可能是可以避免的?而且我想使用新的 GRAPH API 而不是旧的 REST API - 但我不确定如何重写该调用(我需要获取大而直接的用户图片)。