我需要转储应用程序用户的一些信息 我正在使用此代码!
$fbme = $facebook->api('/me');
$str = $fbme['name'].' '.$fbme['sex'].' '.$fbme['hometown_location'].' '.$fbme['profile_url'].'\r\n';
$fp = fopen("data.txt", "w");
fwrite($fp, $str);
fclose($fp);
但这只显示名称,没有别的! 为什么?
答案 0 :(得分:5)
你正在编造财产名称。这不是性,而是性别。等等。阅读:http://developers.facebook.com/docs/reference/api/user/
答案 1 :(得分:0)
$friends = $facebook->api('me/friends');
//print_r($friends['data']);
print_r("Number of friends: ". count($friends['data']));
foreach ($friends['data'] as $key=>$friendList) {
echo "<br/>".$key." ".$friendList['name']."<img src='https://graph.facebook.com/".$friendList['id']."/picture' width='50' height='50' title='".$friendList['name']."' />";
}