我使用fb graph api 1.0来吸引用户的朋友。
$facebook = new Facebook(array(
'appId' => $appid,
'secret' => $appsecret,
'cookie' => TRUE,
));
$fbuser = $facebook->getUser();
if ($fbuser) {
try {
$user_friends = $facebook->api('/me/friends');
foreach($user_friends->data as $friend){
echo $friend->name;
}
}
我想回应一位fb用户的所有朋友,但我收到Trying to get property of non-object
错误。那太奇怪了!
如果我echo json_encode(user_friends);
{
"data":[
{
"name":"JIN",
"id":"100007934492797"
},
{
"name":"aris",
"id":"100008128873664"
},
{
"name":"Madm",
"id":"34234234"
}
],
"paging":{
"next":"https://graph.facebook.com/v1.0/1380314981/friends?limit=5000&offset=5000&__after_id=enc_AeyRMdHJrW0kW9vIZ41uFPXMPgE-VwRaHtQJz2JWyVc0hMl9eOG10C6JWjoCO8O2E4m24EPr28gIt9mxQR8oIQmN"
}
}
以下是var_dump($user_friends)
:
array (size=2)
'data' =>
array (size=477)
0 =>
array (size=2)
'name' => string 'Ajmaltert' (length=10)
'id' => string '93524316' (length=7)
1 =>
array (size=2)
'name' => string 'Morgertan' (length=13)
'id' => string '5013347575' (length=9)
2 =>
array (size=2)
'name' => string 'Mohd Muntalip' (length=22)
'id' => string '5087024751' (length=9)
more elements...
'paging' =>
array (size=1)
'next' => string 'https://graph.facebook.com/v1.0/1380314981/friends?limit=5000&offset=5000&__after_id=enc_Aex1c8dtr7YsIz0Zn2fbJiz5XSI9FwPv9jkXfCCzRq0U7aBVGxjuJIZiKib-q3Rw99D-S6oufCTul4IFZkkgowpA' (length=177)
答案 0 :(得分:1)
Facebook API返回一个关联数组,而不是一个对象。所以你应该这样做:
foreach($user_friends['data'] as $friend) {
echo $friend['name'];
}