如何使用 facebook php sdk 更快地查找朋友的信息
我使用以下代码来检索用户的朋友列表以及这些朋友的信息。
$frnd = $facebook ->api('/me/friends?access_token='.$accessToken.'&fields=id,name,about,hometown');
for ($i=0; $i<$nr_friends; $i++)
{
$friendinfo = $facebook->api('/'.$frnd["data"][$i]["id"].'?fields=id,name,hometown,location');
echo $friendinfo['name']." ".$friendinfo['location']['name']." ".$friendinfo['hometown']['name']."</br>";
}
问题是,这种方法需要花费大量时间来加载好友信息。有什么办法可以让它更快吗?
I'm using the following code to retrieve the user's friends list and the info for those friends.
$frnd = $facebook ->api('/me/friends?access_token='.$accessToken.'&fields=id,name,about,hometown');
for ($i=0; $i<$nr_friends; $i++)
{
$friendinfo = $facebook->api('/'.$frnd["data"][$i]["id"].'?fields=id,name,hometown,location');
echo $friendinfo['name']." ".$friendinfo['location']['name']." ".$friendinfo['hometown']['name']."</br>";
}
The problem is, this method takes a lot of time to load the friends info. Is there any way to make this faster?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为您可以通过将 ID 作为
ids
参数传递来将好友信息的查询压缩到一个 API 中。我还没有测试过这个,但尝试类似以下内容:我不确定确切的语法,没有测试自己,但你应该在这里找到更多信息:http://developers.facebook.com/docs/api#reading
I think you can condense the querying of friends' info into one API by passing the IDs as an
ids
parameter. I haven't tested this, but try something similar to the following:I'm not sure on the exact syntax without testing myself, but you should find more information here: http://developers.facebook.com/docs/api#reading
使用 FQL 语言:
有关所有表及其相应列名称的列表,我参考:Facebook FQL 参考
Use the FQL language:
For a list of all the tables with their corresponding column names I refer to: Facebook FQL Reference