我可以使用
获取新闻Feedhttp://graph.facebook.com/me/home
除了获取发布状态或照片的用户的ID,例如。
from = {
id = 100004146969087;
name = "Tim";
};
,我想获取该人的fullName和profile_img_url。我必须发送/me?fields=picture, username, name
之类的请求来获取信息。如何通过一个请求获取新闻Feed中的用户的fullName和profile_img_url?
答案 0 :(得分:2)
我认为这就是你要找的东西:
http://graph.facebook.com/me/home?fields=from.fields(name,username,picture.type(large))
答案 1 :(得分:0)
可能是您可以使用乘法查询。 JSON格式查询,你可以在facebook开发者文档中找到文档。