0

I was just curious if there was a way to use the graph api to get all of a user's friends about me similar to line of code?

$friends = $facebook->api("/me/friends");

but instead of just returning the friend's Name and ID it would nice to returns there "about me" as well. If i'm going to need to use a fql query instead, please post it in the answers section. Though, I would prefer a graph call if that is possible.

4

1 回答 1

1

您可以通过明确指定用户的其他字段以及端点来检索其他字段,例如,而不是

/me/friends

您可以使用以下friends_about_me权限来检索bio

/me/friends?fields=name,id,bio
于 2013-06-26T12:49:09.980 回答