我正在尝试使用新的 PHP SDK 和 GRAPH API 将旧的 FBML 应用程序迁移到 iFrame,但无法弄清楚 - 如何找到访问者的城市。
例如,在我自己的 Facebook 个人资料中,我列出了Current City和Hometown:
但是当我尝试下面的 iFrame 应用程序时,位置和家乡没有打印出来,而包括我的雇主和教育在内的其他数据被打印出来:
<?php
include_once 'facebook.php';
$facebook = new Facebook(array(
'appId' => "182820975103876",
'secret' => "XXXXXXX",
'cookie' => true,
));
$session = $facebook->getSession();
if (!$session) {
$url = $facebook->getLoginUrl();
print("<script type='text/javascript'>top.location.href = '$url';</script>");
} else {
try {
$me = $facebook->api('/me');
print('<pre>');
print_r($me);
print('</pre>');
} catch (FacebookApiException $e) {
print("Error:" . $e);
}
}
?>
这是我自己看到的部分数据,当前位置不存在:
Array
(
[first_name] => Alexander
[education] => Array
(
[0] => Array
(
[school] => Array
(
[id] => 106509962720287
[name] => Riga Nr. 40
)
[type] => High School
)
[1] => Array
(
[school] => Array
(
[id] => 103130426393616
[name] => RWTH Aachen University
)
[year] => Array
(
[id] => 143018465715205
[name] => 2000
)
[type] => College
)
)
[gender] => male
...........
)
问候亚历克斯