使用 Graph API 检索用户自定义的 Facebook 好友列表
对于谷歌来说,这是一个很难的话题,如果我在这里找不到答案,那么下一步将是暴力破解;-)
我想要用户可以创建的列表; PHP 中的类似内容和其他 API :
$facebook->api_client->friends_getLists();
我尝试过“metadata=1”/me/friends,但我不能似乎正在检索任何线索...
有人吗?
It's a hard topic to google, brute-forcing it will be the next step if I can't get an answer here ;-)
I want the lists that users can create; something like this in PHP with some other API :
$facebook->api_client->friends_getLists();
I've tried to "metadata=1" /me/friends, but I can't seem to be retrieving any leads...
Anyone?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您研究过 FQL 吗?看来您可以从
friendlist
表获取此信息(但它仅适用于当前登录的用户)。Did you look into FQL? Looks like you can get this info from
friendlist
table (but it only works for currently logged in user).