我从Facebook Graph API获得了一个post对象:
GET/v2.5/142679255268_10153887281355269
返回一个像这样的对象:
{
"created_time": "2016-03-25T03:28:50+0000",
"message": "Whats up everybody, I am here now",
"id": "142679255268_10153887281355269"
}
如何获取发布此内容的用户的个人资料? 我查看了文档并找不到任何内容,但我知道它可能。
答案 0 :(得分:0)
这适用于Post项目:
/142679255268_10153887281355269?fields=from
它返回以下JSON:
{
"from": {
"name": "Bhumi Patel",
"id": "10153245821277822"
},
"id": "142679255268_10153887281355269"
}
更多信息:https://developers.facebook.com/docs/graph-api/reference/v2.5/post/
编辑:出于数据隐私原因,您可能无法再获取用户名称。