我使用此API从Facebook页面获取一些注释: https://developers.facebook.com/docs/graph-api/reference/v2.8/user/feed
它返回了我的对象:
"data": [
{
"story": "pdated their profile picture.",
"created_time": "2017-01-13T23:02:10+0000",
"id": "439421442879448_707028796118710"
},
如何获取作者的照片和姓名?
答案 0 :(得分:1)
你必须要求这个领域:
/me/feed?fields=from
结果:
{
"data": [
{
"from": {
"name": "xxx",
"id": "xxx"
},
"id": "xxx"
},
...
...或者也可以拍照:
/me/feed?fields=from{id,name,picture}
对于Pages,只需将“me”替换为Page ID。